added overview readme
This commit is contained in:
12
loops/primes/bak
Normal file
12
loops/primes/bak
Normal 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 []
|
Reference in New Issue
Block a user