HackerRank_solutions icon indicating copy to clipboard operation
HackerRank_solutions copied to clipboard

317 efficient solutions to HackerRank problems

Results 8 HackerRank_solutions issues
Sort by recently updated
recently updated
newest added

If you implement Java List using arrays, you get long insert/delete. If you implement it using lists, you also get long insert/delete, so it buys you nothing. Arguing that a...

https://www.hackerrank.com/challenges/tag-content-extractor/forum/comments/355669 Moreover, I think empty content should be allowed.

Your solution is wrong — try `a a b b a a a b`

SELECT CAST(CEILING((AVG(CAST(Salary AS Float)) - AVG(CAST(REPLACE(Salary, 0, '')AS Float)))) AS INT) FROM EMPLOYEES;

Hey @RodneyShag, I have saved most of all my Hackerank solutions and I would love to contribute them to this repo for the C++ solutions part. So can you let...

Updated Solution.java We can use toString Method instead of our string Just observe the print statements of catch... ```java try{ int x = input.nextInt(); int y = input.nextInt(); System.out.println(x/y); }...