Skip to content

Commit 05b2551

Browse files
Update longest_increasing_subsequence_iterative.py
1 parent fe57ec3 commit 05b2551

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dynamic_programming/longest_increasing_subsequence_iterative.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import copy
1919

2020

21-
def longest_subsequence(array: list[int]) -> list[int]: # This function is recursive
21+
def longest_subsequence(array: list[int]) -> list[int]:
2222
"""
2323
Some examples
2424

0 commit comments

Comments
 (0)