We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fef3c7 commit 6944be8Copy full SHA for 6944be8
docs/Algorithmen/ackermann.py
@@ -5,4 +5,4 @@ def ack(m,n):
5
return ack(m - 1, 1)
6
return ack(m - 1, ack(m, n - 1))
7
8
-print(ack(4, 4))
+print(ack(4, 4))
0 commit comments