If you program recursively, the intermediate fractions need to be stored in memory. But this probably only takes up a little more space on the stack until the function finally returns, so even with millions of calls it doesn't really matter.
I guess it's neglectable, the amount of recursions cannot be very high in any case.
Loading collection data...
If you program recursively, the intermediate fractions need to be stored in memory. But this probably only takes up a little more space on the stack until the function finally returns, so even with millions of calls it doesn't really matter.
I guess it's neglectable, the amount of recursions cannot be very high in any case.