2020年7月28日
摘要: s = "abc" t = "ahbgdc" class Solution: (error) def isSubsequence(self, s: str, t: str): for i in range(len(s)): if s[i] in t: if i <= t.index(s[i]) : 阅读全文
posted @ 2020-07-28 08:33 如尘如水 阅读(966) 评论(0) 推荐(0)