摘要: class Solution: def checkInclusion(self, s1: str, s2: str) -> bool: result = False s1_list = sorted(list(s1)) # 滑动窗口值=s1的长度 i = 0 j = i + len(s1) - 1 阅读全文
posted @ 2022-05-07 00:34 stronger_el 阅读(28) 评论(0) 推荐(0)