Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
thatPamIAm committed Jul 12, 2018
1 parent de53688 commit 85708a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lessons/module-2/recursion.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ The Collatz conjecture applies to positive numbers and speculates that is alway
- Otherwise, if `n` is even, repeate this process on `n/2`
- Otherise, if `n` is odd, repeat this process on `3n + 1`

Write a recursive function that calculatees how many steps it takes to get to 1
Write a recursive function that calculates how many steps it takes to get to 1

n | collatz(n) |Steps
--- | :---: | ---
Expand Down

0 comments on commit 85708a8

Please sign in to comment.