242. Valid Anagram
Posted come_on
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了242. Valid Anagram相关的知识,希望对你有一定的参考价值。
Given two strings s and t, write a function to determine if t is an anagram of s.
For example, s = "anagram", t = "nagaram", return true. s = "rat", t = "car", return false.
Note: You may assume the string contains only lowercase alphabets.
回文构词法,可采用排序或字符统计法
实现程序:
class Solution(object): def isAnagram(self, s, t): """ :type s: str :type t: str :rtype: bool """ #排序法 return sorted(s) == sorted(t) #字符统计法 from collections import Counter return Counter(s).elements== Counter(t).elements
以上是关于242. Valid Anagram的主要内容,如果未能解决你的问题,请参考以下文章