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