Closed ajayg415 closed 4 years ago
Problem: Write a logic to implement Square Root with out using Math object
Example 1: : Input : 4, Output: 2 Output: 2 Input: 3, output: 1.732
function getSquareRoot(num) { //Code goes here }
Closing this issue as solution already provided
Problem: Write a logic to implement Square Root with out using Math object
Example 1: : Input : 4, Output: 2 Output: 2 Input: 3, output: 1.732