First solution in Clear category for Is Even by carel.anthonissen
def is_even(num: int) -> bool: return 1 - num % 2
May 7, 2020
Comments: