Skip to content

Commit fc1237a

Browse files
Update longest_increasing_subsequence.py
1 parent e2d8a30 commit fc1237a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dynamic_programming/longest_increasing_subsequence.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1111
Example:
1212
``[10, 22, 9, 33, 21, 50, 41, 60, 80]`` as input will return
13-
``[10, 22, 33, 41, 60, 80]`` as output
13+
``[10, 22, 33, 50, 60, 80]`` as output
1414
"""
1515

1616
from __future__ import annotations

0 commit comments

Comments
 (0)