Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
with out modulo solution in Creative category for Is Even by Jjjlkk
def is_even(num: int) -> bool:
# your code here
return not(abs(num)&0x0001)
if __name__ == '__main__':
print("Example:")
print(is_even(2))
# These "asserts" are used for self-checking and not for an auto-testing
assert is_even(2) == True
assert is_even(5) == False
assert is_even(0) == True
print("Coding complete? Click 'Check' to earn cool rewards!")
July 6, 2020
Comments: