Skip to content

Commit d1fc330

Browse files
authored
Update longest_increasing_subsequence.md
fixed a typo (in the longest non decreasing subsequence section, it says "and make a slightly modification")
1 parent 70c4d5a commit d1fc330

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sequences/longest_increasing_subsequence.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ This is in fact nearly the same problem.
300300
Only now it is allowed to use identical numbers in the subsequence.
301301

302302
The solution is essentially also nearly the same.
303-
We just have to change the inequality signs, and make a slightly modification to the binary search.
303+
We just have to change the inequality signs, and make a slight modification to the binary search.
304304

305305
### Number of longest increasing subsequences
306306

0 commit comments

Comments
 (0)