ADP Interview Question

implement a fast integer square root func that takes 32 bit unsigned integer and returns another 32 bit unsigned integer that is the floor of the square root of the input

Interview Answer

Anonymous

Apr 13, 2012

binary search

2