Skip to content

Commit 6944be8

Browse files
committed
commit ackermann trial
1 parent 6fef3c7 commit 6944be8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Algorithmen/ackermann.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ def ack(m,n):
55
return ack(m - 1, 1)
66
return ack(m - 1, ack(m, n - 1))
77

8-
print(ack(4, 4))
8+
print(ack(4, 4))

0 commit comments

Comments
 (0)