Gets it done solution in Clear category for The Nearest Square Number by martin_b
def nearest_square(n): return int(n**.5 + .5)**2
June 3, 2018