Square Root Integral in Python
Given a number N, find its square root. You need to find and print only the integral part of square root of N. For eg. if number given is 18, answer is 4. Input format : Output Format : Constraints : Understanding the Problem: Given a non-negative integer ‘N’, our objective is to find and … Read more