Tag: square root
-
Newton-Raphson vs Bisection Search vs Brute force for finding square root of number.
Computers are meant to compute things. Finding square root is a very basic algorithm which can be coded in basically 3 ways : All 3 ways are based on the Guess and check method A.K.A Exhaustive Enumeration. >1. Brute force method : In this method we test all the possible values and test them . […]