Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
There and back solution in Clear category for The Nearest Square Number by ludek.reif
from math import sqrt
def nearest_square(number):
return round(sqrt(number)) ** 2
Oct. 9, 2019