added overview readme

This commit is contained in:
2024-01-30 02:13:44 +01:00
parent 38d2a9e7c2
commit 1e9595b41d
8 changed files with 104 additions and 68 deletions

12
loops/primes/bak 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 []