Skip to content

Commit

Permalink
Create 6 kyu - Ackermann Function.py
Browse files Browse the repository at this point in the history
  • Loading branch information
freedan42x authored Jul 18, 2022
1 parent 3b4662a commit eb54f48
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/6 kyu - Ackermann Function.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Ackermann=A=lambda m,n:m==0and n+1or n==0and A(m-1,1)or A(m-1,A(m,n-1))

0 comments on commit eb54f48

Please sign in to comment.