摘要: 任务一: Leetcode 383 class Solution: def canConstruct(self, ransomNote: str, magazine: str) -> bool: cnt = Counter(magazine) for c in ransomNote: cnt[c] 阅读全文
posted @ 2024-10-31 11:49 sunshine丶23 阅读(1) 评论(0) 推荐(0) 编辑