Interview Question
Front End Engineer Interview
-
MetaImplement a square root function. Question related to array data manipulation.
Interview Answer
1 Answer
▲
0
▼
function mySqrt(x) { if(isNaN(x) || x x ){ right = mid; }else{ left = mid; } } return left; }
Rishabh Mishra on
Add Answers or Comments
To comment on this, Sign In or Sign Up.