karanyadav_bravo98's blog

By karanyadav_bravo98, history, 2 months ago, In English

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:

224067239

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:

224064574

Full text and comments »