Compute the floor of the square root of a non-negative integer without using floating-point math.
Constraints
Example
```python >>> integer_sqrt(0) 0 >>> integer_sqrt(1) 1 >>> integer_sqrt(4) 2 >>> integer_sqrt(10) 3 >>> integer_sqrt(25) 5 >>> integer_sqrt(26) 5 ```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints