Pseudocode algorithm to find square root of an integer
1. Set low to 1, high to number
2. Guess = (low + high)/2
3. If guess^2 > number, set high = guess to eliminate top half of range
4. If guess^2 < number, set low = guess to eliminate bottom half of range
5. Repeat until guess^2 = number