+ 2
[challenge] code for finding the square root of a given number without using sqrt function. Exact root required... Precision 3
8 Answers
+ 10
https://code.sololearn.com/cFNZTaa1NeBA/?ref=app
+ 8
#python
print(int(input())**.5)
+ 2
You should define your precision level before going for exact roots
+ 1
https://code.sololearn.com/WEGfbB4jnO3Q/?ref=app