added loops

This commit is contained in:
2024-01-29 19:09:42 +01:00
parent 01c9aff07d
commit 39e3c38a94
11 changed files with 230 additions and 0 deletions

12
loops/ex01/primes.py Normal file
View File

@ -0,0 +1,12 @@
def is_prime(n: int) -> bool:
# TODO: implement
return False
def next_prime(n: int) -> int:
return -1
def prime_factorize(n: int) -> list[int]:
# TODO: implement
return []