fix incorrect formats and output memory usage on call stack warning

This commit is contained in:
2025-08-05 01:00:07 +01:00
parent a8acafffe9
commit c3c41e0336
4 changed files with 19 additions and 10 deletions

8
app.py
View File

@@ -1,4 +1,4 @@
def factorial(x):
if x==1: return 1
return factorial(x-1) + x
factorial(10000)
def f():
f()
f()