Square Root of larger Numbers in python (2-Methods)
Writing this blog after solving Problem B(points on plane) Educational Codeforces Round 145 (Rated for Div. 2)
Method 1
Using Decimal Module
checkout: https://docs.python.org/3/library/decimal.html
Usage:
Method 2
Using Newton's Method
read about this method on wikipedia: https://en.wikipedia.org/wiki/Newton's_method
this will work if we want to work with integers
Source: stackoverflow
Usage: