Second solution in Clear category for Is Even by mscislaw
def is_even(num: int) -> bool: return num % 2 == 0
May 2, 2021