First solution in Clear category for Is Even by oyiu
def is_even(num: int) -> bool: return num%2==0
July 5, 2020