Algorithm Search a 2D Matrix Search for a value in a matrix, given that matrix is sorted from left to right for each row and that first integer of each row is greater than the last integer of previous row.
Algorithm Find min/max value in rotated sorted array When given you a rotated sorted array, would you be able to find the minimum without going through all the elements? What about finding the maximum? Want to know more, then read on!
Algorithm Search in rotated sorted array Have you wondered how to perform a binary search on rotated search array? Read on if you wish to know!
Algorithm Implement a square root function? Do you know how to implement a square root function without using native library function? If not, please read on!