Project is now named Celeste
This commit is contained in:
parent
87917f9526
commit
269092fb53
45 changed files with 1507 additions and 12 deletions
3
celeste/math/numbers/functions.py
Normal file
3
celeste/math/numbers/functions.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
def factorial(n: int) -> int:
|
||||
if n == 0: return 1
|
||||
return n * factorial(n-1)
|
||||
Loading…
Add table
Add a link
Reference in a new issue