class Solution(object):
def isAnagram(self, s, t):
"""
:type s: str
:type t: str
:rtype: bool
"""
s_list = sorted(s)
t_list = sorted(t)
if s_list == t_list:
return True
else:
return False
https://leetcode.com/problems/valid-anagram/#/description
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.