We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1640493 commit 9e51190Copy full SHA for 9e51190
pythainlp/util/lcs.py
@@ -18,7 +18,7 @@ def longest_common_subsequence(str1: str, str2: str) -> str:
18
from pythainlp.util.lcs import longest_common_subsequence
19
20
print(longest_common_subsequence("ABCBDAB", "BDCAB"))
21
- # output: "BCAB"
+ # output: "BDAB"
22
"""
23
m = len(str1)
24
n = len(str2)
0 commit comments