Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
is_divisible_by(2) solution in Clear category for Is Even by Phil15
is_divisible_by = lambda d: lambda n: not n % d
is_even = is_divisible_by(2)
April 28, 2020