this post was submitted on 05 May 2024
820 points (99.0% liked)
Programmer Humor
19471 readers
1344 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I've always hated recursion. It's always seemed like a cutesy programming trick that's not reliable in all conditions.
You could blow the stack in an edge case that you didn't think of. So it should never be a standard pattern. It's only good if you need to rewrite something for optimization and recursion is appropriate. But in many cases recursion is slower.
"Look at what I can do in 5 lines of code!" is for programming contests, not for anything important.