Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
CheezItMan authored Oct 3, 2019
1 parent dec2f46 commit 3c6472e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Dynamic programming is a strategy for developing an algorithm where each subprob

```
P(1) = 1
P(2) = 2
P(2) = 1
for all n > 2
P(n) = P(P(n - 1)) + P(n - P(n - 1))
```
Expand Down

0 comments on commit 3c6472e

Please sign in to comment.