DEV Community

Discussion on: Algorithms Problem Solving: Reduce to zero

Collapse
 
thejoezack profile image
Joe Zack

The recursive solution is prettier, but it's not doing any less work and it ties up more memory unless your language supports tail recursion (python doesn't)

I try to avoid recursive solutions for problems like these unless the solution specifically needs back tracking.

Collapse
 
friesischscott profile image
FriesischScott

Never heard of tail recursion before. I'll look it up, thanks.