From 6d6dd6cf9d28e5a0802d2d12b055e9ef92354f3b Mon Sep 17 00:00:00 2001 From: maxneedspats <84929191+maxneedspats@users.noreply.github.com> Date: Thu, 2 Jun 2022 16:41:09 -0500 Subject: [PATCH] Ok, NOW an Ackermann function. I forgot to stage changes. --- testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing.py b/testing.py index de27f8f..073bdb0 100644 --- a/testing.py +++ b/testing.py @@ -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: "))