this post was submitted on 05 May 2024
814 points (99.0% liked)

Programmer Humor

19207 readers
982 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

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Blue_Morpho@lemmy.world -1 points 4 months ago

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.