Skip to content

Commit f0447ce

Browse files
Update longest_increasing_subsequence.py
1 parent 1a73d2d commit f0447ce

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

dynamic_programming/longest_increasing_subsequence.py

-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ def longest_subsequence(array: list[int]) -> list[int]: # This function is recu
3232
[1, 1, 1]
3333
>>> longest_subsequence([])
3434
[]
35-
>>> longest_subsequence([28, 26, 12, 23, 35, 39])
36-
[12, 23, 35, 39]
3735
"""
3836
array_length = len(array)
3937
# If the array contains only one element, we return it (it's the stop condition of

0 commit comments

Comments
 (0)