Create a function that uses bisection search to compute the approximative value of the square root of a number.
n - delta and n + delta, it's considered valid).bisec_sqrt(69) ➞ 8.307
bisec_sqrt(16) ➞ 4.0
bisec_sqrt(12984771) ➞ 3603.439
bisec_sqrt(12.21) ➞ 3.494
round() method).