Sunday, April 28, 2024

📑 Recursive Tables

📑 Task

1) What type of function is this?
2) How can you rewrite it so as not to use recursion?

📑 Answer

1) This is a recursive generator
It can be made infinite by removing the limiter max_count
2)