Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Beginner's solution solution in Clear category for The Nearest Square Number by Selindian
def nearest_square(number):
#replace this for solution
import math
return round(math.sqrt(number)) ** 2 # get square root, round result and square it by 2.
if __name__ == '__main__':
print("Example:")
print(nearest_square(8))
#These "asserts" using only for self-checking and not necessary for auto-testing
assert nearest_square(8) == 9
assert nearest_square(13) == 16
assert nearest_square(24) == 25
assert nearest_square(9876) == 9801
print("Coding complete? Click 'Check' to earn cool rewards!")
Feb. 28, 2022