Easy
Given a non-negative integer n, return the integer square root of n (the floor of the true square root). Do not use built-in sqrt.
n
Input: n = 4 Output: 2
Input: n = 8 Output: 2 Explanation: floor(2.828...) = 2.