ajayg415 / Javascript-Algorithms

1 stars 0 forks source link

Problem: Square Root algorithm #3

Closed ajayg415 closed 4 years ago

ajayg415 commented 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
}
ajayg415 commented 4 years ago

Closing this issue as solution already provided