September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
|
|
@ -0,0 +1,5 @@
|
|||
A (m, n) = m == 0 ? n + 1 : n == 0 ? A (m - 1, 1) : A (m - 1, A (m, n - 1))
|
||||
print A (0, 4)
|
||||
print A (1, 4)
|
||||
print A (2, 4)
|
||||
print A (3, 4)
|
||||
Loading…
Add table
Add a link
Reference in a new issue