Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created October 2, 2019 07:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasongorman/2797e8d67ed6d382c82bf08a2845fc60 to your computer and use it in GitHub Desktop.
Save jasongorman/2797e8d67ed6d382c82bf08a2845fc60 to your computer and use it in GitHub Desktop.
def sqrt(number):
if(number == 0):
return 0;
g = number/2.0;
g2 = g + 1;
while(g != g2):
n = number/ g;
g2 = g;
g = (g + n)/2;
return g;
print('The Square root of 25 =', sqrt(25));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment