
leetcode周赛
ERCO123
这个作者很懒,什么都没留下…
展开
-
【leetcode】第230场周赛5689、5690、5691、5692
5689. 统计匹配检索规则的物品数量 class Solution: def countMatches(self, items: List[List[str]], ruleKey: str, ruleValue: str) -> int: if ruleKey == 'type': return sum(1 for item in items if item[0] == ruleValue) elif ruleKey == 'colo原创 2021-02-28 18:37:34 · 119 阅读 · 0 评论 -
【leetcode】第229场周赛5685、5686、5687、5688
5685. 交替合并字符串 class Solution: def mergeAlternately(self, word1: str, word2: str) -> str: n1, n2 = map(len, (word1, word2)) i, j = 0, 0 res = '' while i < n1 and j < n2: res += word1[i] r原创 2021-02-21 12:41:50 · 161 阅读 · 4 评论