Implement `mySqrt(x)` returning the floor of the square root of a non-negative integer `x`, computed with binary search.
+ 1 hidden test run on Submit.
Binary searching the integer square root runs in O(log x) time.
Run your code to see results.