Solution for Valid Anagram problem which is a part of Grind 75 list.
class Solution:
def isAnagram(self, s: str, t: str) -> bool:
return sorted(s) == sorted(t)
-->
Solution for Valid Anagram problem which is a part of Grind 75 list.
class Solution:
def isAnagram(self, s: str, t: str) -> bool:
return sorted(s) == sorted(t)