Microsoft Interview Question

How can you find percentile? Write code

Interview Answer

Anonymous

Apr 30, 2017

I suggest optimal solution using "quick find algorithm" But the man ask for more slow and naive solution. I suggest to use sort solution with nlogn complexity.

1