jeffgerickson / algorithms

Bug-tracking for Jeff's algorithms book, notes, etc.
7.92k stars 1.02k forks source link

Typo in Backtracking #96

Closed bdomokos74 closed 5 years ago

bdomokos74 commented 5 years ago

Chapter number or note title: 2.7 Longest Increasing Subsequence, Take 2

Page number: 88

Error description: On the very bottom of the page, in the box to the left, best ← max{best, LISfirst(1)} should be best ← max{best, LISfirst(i)}

Suggested fix (if any): Change 1 to i