Sollicitatievraag bij Meta

Implement a square root function. Question related to array data manipulation.

Antwoord op sollicitatievraag

Anoniem

17 dec 2021

function mySqrt(x) { if(isNaN(x) || x x ){ right = mid; }else{ left = mid; } } return left; }