Dumb solution in Clear category for Is Even by obone
def is_even(num: int) -> bool: return not num % 2
May 2, 2020