-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathlcs_bf.py
47 lines (37 loc) · 1021 Bytes
/
lcs_bf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import collections
from typing import List
tests = {
1: ("abcde", "ace"),
2: ("abc", "abc"),
3: ("abc", "def")
}
res = {
1: 3,
2: 3,
3: 0
}
def check_result(index: int, output: int):
if index > len(tests):
raise RuntimeError(f'Failed to get {index}th case')
return res.get(index, False) == output
def LCS(str1: str, str2: str) -> int:
def LCSRec(i, j):
nonlocal str1, str2
if i >= len(str1) or j >= len(str2):
return 0
if str1[i] == str2[j]:
return 1 + LCSRec(i + 1, j + 1)
else:
return max(LCSRec(i + 1, j),
LCSRec(i, j + 1))
return LCSRec(0, 0)
def main():
for index, data in tests.items():
text1, text2 = data[0], data[1]
res = LCS(text1, text2)
if check_result(index, res):
print(f'Test case {index} is correct: {res}')
else:
print(f'Test case {index} is failed: {res}')
if __name__ == '__main__':
main()