Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 267 Bytes

Ruby.md

File metadata and controls

5 lines (5 loc) · 267 Bytes

Recursion

  • find the base case
  • fine any repeatitve work in your code
  • break the problem into smaller pieces until yo not have any more work to do.
  • Recursion is used to solve problems that can be decomposed into smaller versions of the same problem.