OneLiner solution in Creative category for Is Even by InternalError
def is_even(num: int) -> bool: return not num%2
Jan. 27, 2021