MIT6.00.1x---Introduction-to-Computer-Science-and-Programming-using-Python
MIT6.00.1x---Introduction-to-Computer-Science-and-Programming-using-Python copied to clipboard
A suggestion to Algorithm to Cube Roots (Chap 3.3 #2).txt
In the case x is negative set high = 0 and low = min(-1.0,x), not low = x, because if low = x, the algorithm does not work for cases where x between 0 and -1.