Skip to content

Commit

Permalink
#1 {Code} - Fixing square_root function
Browse files Browse the repository at this point in the history
Missing returning the value
  • Loading branch information
acorbin3 authored Jan 29, 2019
1 parent 5418167 commit e29bde3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions 5_Software/math_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ def square_root(x):
else:
right = guess
guess = (right+left)/2.0
return guess

0 comments on commit e29bde3

Please sign in to comment.