HTMLify

LeetCode - Valid Anagram - Python
Views: 5 | Author: abh
class Solution:
    def isAnagram(self, s: str, t: str) -> bool:
        return sorted(s) == sorted(t)

Comments