Ok, NOW an Ackermann function. I forgot to stage changes.
This commit is contained in:
parent
f61042cb8a
commit
6d6dd6cf9d
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ def ackermann(m, n):
|
|||
|
||||
# Sets much higher recursion limit
|
||||
import sys
|
||||
sys.setrecursionlimit(2000)
|
||||
sys.setrecursionlimit(10000)
|
||||
|
||||
# Main part, input and print
|
||||
num1 = int(input("Input m: "))
|
||||
|
|
Loading…
Reference in a new issue