Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 489 Bytes

Recursion.md

File metadata and controls

20 lines (16 loc) · 489 Bytes

recursion = a function that calls itself from within helps to visualize a complex problem into basic steps problems can be solved more easily iteratively or recursively

iterative = faster, complex recursive = slower, simpler

---- EXAMPLE 1 ---- ITERATIVE def walk(steps): for step in range(1, steps+1): print(f"You take step #{step}")

RECURSIVE def walk(steps): if steps == 0: return walk(steps - 1) print(f"You take step #{steps}")

walk(100)