First solution in Clear category for Is Even by Oleg_Domokeev
def is_even(num: int) -> bool: return not num % 2
March 30, 2021