one liner bOiii solution in Clear category for Is Even by aasengil
def is_even(num: int) -> bool: return num % 2 == 0
Aug. 25, 2020