add updates to number_utils for testing

This commit is contained in:
2026-04-05 11:56:40 -04:00
parent 1ad3d78090
commit 2b81f23477
2 changed files with 13 additions and 0 deletions

View File

@@ -3,3 +3,6 @@
# more code for hw
def is_even(n):
return n % 2 == 0
def is_odd(n):
return n % 2 != 0