bitwise solution in Creative category for Is Even by juestr
def is_even(num: int) -> bool: return num & 1 ^ 1
Dec. 5, 2021
Comments: