Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First "Is Even" solution in Clear category for Is Even by olgag
def is_even(num: int) -> bool:
# Check if the given number is even or not.
# Input: An int.
# Output: A bool.
return not bool(num%2)
Feb. 5, 2021
Comments: