initial commit test suite

This commit is contained in:
2025-10-24 09:33:33 -05:00
parent a3e89d3460
commit 922ed4d394
4 changed files with 8 additions and 0 deletions

View File

@@ -15,6 +15,14 @@ def fact(n: int) -> int:
return n * fact(n - 1)
def is_even(x):
return x % 2 == 0
def is_odd(x):
return x % 2 == 1
if __name__ == '__main__':
n = 5
assert fact(n) == 120