Given a non-negative integer `n`, compute and return the integer square root of `n`. The integer square root is the largest integer `x` such that `x*x <= n`.
Input: 4
Output: 2
Input: 8
Output: 2
Input: 6096
Output: 78
Your notes are automatically saved in your browser's local storage and will persist across sessions on this device.