This website works better with JavaScript
Home
Esplora
Aiuto
Registrati
Accedi
duh
/
elab-hxb
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Albero (Tree):
9e2edbc0ce
Rami (Branch)
Tag
master
elab-hxb
/
phxb
/
elab
/
utils
/
GetArray.py
GetArray.py
78 B
Cronologia
Originale
1
2
3
4
5
def getArray(n):
if(n<=1):
return n;
else:
return n*getArray(n-1);