First solution in Creative category for Is Even by dimakyrytschuk
def is_even(num: int) -> bool: return divmod(num,2)[1] == 0
July 21, 2021
Comments: