How Recursion Depth works
So Recursion Depth is the limit of the number of nested calls to a function. So in Python and Javascript Engine the maximal recursion depth is limited to 10^4 and if you exceed the limit it will throw an error =>
RecursionError: maximum recursion d...
tarunsankhla.hashnode.dev1 min read