Follow up for H-Index: What if the citations array is sorted in ascending order? Could you optimize your algorithm?
Hint
Expected runtime complexity is in O(log n) and the input is sorted.
Solution
- Binary Search: if
citations[mid] < len(citations)-mid, start=mid+1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|