python3-算法刷题-Counter-更新中

https://zhuanlan.zhihu.com/p/355601478

242. 有效的字母异位词

https://leetcode.cn/problems/valid-anagram

给定两个字符串 s 和 t ,编写一个函数来判断 t 是否是 s 的字母异位词。
注意:若 s 和 t 中每个字符出现的次数都相同,则称 s 和 t 互为字母异位词。

示例 1:
输入: s = “anagram”, t = “nagaram”
输出: true

from collections import Counter
class Solution:
    def isAnagram(self, s: str, t: str) -> bool:
        a = Counter(s)
        b = Counter(t)
        return a == b

389. 找不同

https://leetcode.cn/problems/find-the-difference/

给定两个字符串 s 和 t ,它们只包含小写字母。
字符串 t 由字符串 s 随机重排,然后在随机位置添加一个字母。
请找出在 t 中被添加的字母。
示例 1:
输入:s = “abcd”, t = “abcde”
输出:“e”
解释:‘e’ 是那个被添加的字母。
示例 2:
输入:s = “”, t = “y”
输出:“y”

提示:
0 <= s.length <= 1000
t.length == s.length + 1
s 和 t 只包含小写字母

from collections import Counter
class Solution:
    def findTheDifference(self, s: str, t: str) -> str:
        a = Counter(s)
        b = Counter(t)
        b.subtract(a)
        b += Counter() # 去掉value为0和复数的元素
        return list(b)[0]

你可能感兴趣的:(算法学习与练习,leetcode,算法)