First solution in Clear category for Is Even by Wakko_Warner
def is_even(num: int) -> bool: # your code here return num % 2 == 0
Nov. 18, 2020