-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
executable file
·65 lines (44 loc) · 1.59 KB
/
main.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
import unittest
from typing import List
"""
给定字符串 s 和 t ,判断 s 是否为 t 的子序列。
字符串的一个子序列是原始字符串删除一些(也可以不删除)字符而不改变剩余字符相对位置形成的新字符串。(例如,"ace"是"abcde"的一个子序列,而"aec"不是)。
进阶:
如果有大量输入的 S,称作 S1, S2, ... , Sk 其中 k >= 10亿,你需要依次检查它们是否为 T 的子序列。在这种情况下,你会怎样改变代码?
致谢:
特别感谢 @pbrother 添加此问题并且创建所有测试用例。
示例 1:
输入:s = "abc", t = "ahbgdc"
输出:true
示例 2:
输入:s = "axc", t = "ahbgdc"
输出:false
提示:
0 <= s.length <= 100
0 <= t.length <= 10^4
两个字符串都只由小写字符组成。
链接:https://leetcode-cn.com/problems/is-subsequence
"""
class Solution:
def isSubsequence(self, s: str, t: str) -> bool:
i = j = 0
while j < len(t) and i < len(s):
if s[i] == t[j]:
i += 1
j += 1
return i == len(s)
class SolutionTestCase(unittest.TestCase):
def testisSubsequence(self):
table = [
{"input": ["a", "abc"], "output": True},
{"input": ["abc", "ahbgdc"], "output": True},
{"input": ["axc", "ahbgdc"], "output": False},
{"input": ["", "ahbgdc"], "output": True},
]
for t in table:
self.assertEqual(Solution().isSubsequence(*t["input"]), t["output"])
if __name__ == "__main__":
unittest.main()