Tagged Questions
1
vote
1answer
110 views
Could someone explain the speed difference between the following functions?
The first function is a naive binary search implementation to find the square root of a number:
def sqrt1(x):
if x < 0:
raise ValueError(x)
if x > 0:
if x < 1:
...