Lambda solution in Uncategorized category for The Nearest Square Number by Ylliw
import math nearest_square=lambda n:round(math.sqrt(n))**2
March 7, 2019