Probably a good idea to add some guardrails (if you haven't already). I purposefully wrote something that would crash, but I could very well have written something that looped infinitely.
replied to:This is a good example ofRecursionErrorin Python!f = lambda: f(); f()Traceback (most recent call last): File "/box/submission/file0.code", line 1, in <module> f = lambda: f(); f() ^^^ File "/box/submission/file0.code", line 1, in <lambda> f = lambda: f(); f() ^^^ File "/box/submission/file0.code", line 1, in <lambda> … RecursionError: maximum recursion depth exceeded