Binary search is an efficient algorithm for finding a key in sorted data. It runs in O(log n) time.
3
votes
4answers
577 views
Median of two sorted equal sized arrays on combination
The comprehensive description of the problem can be found here. I'm looking for code review, clever optimizations, adherence to best practices. etc.
This code is also a correction of code previously ...