First solution in Clear category for Is Even by ssk8
def is_even(num: int) -> bool: return not bool(num%2)
April 28, 2020
Comments: