Skip to content

Commit ee52978

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 541ba43 commit ee52978

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

dynamic_programming/longest_common_subsequence.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ def longest_common_subsequence_string(u: str, v: str) -> str:
4848

4949
return "".join(reversed(lcs))
5050

51+
5152
if __name__ == "__main__":
5253
a = "AGGTAB"
5354
b = "GXTXAYB"
@@ -58,4 +59,5 @@ def longest_common_subsequence_string(u: str, v: str) -> str:
5859
assert subseq == expected_subseq
5960

6061
import doctest
62+
6163
doctest.testmod()

0 commit comments

Comments
 (0)