Skip to content

Latest commit

 

History

History
47 lines (37 loc) · 957 Bytes

242-valid-anagram.md

File metadata and controls

47 lines (37 loc) · 957 Bytes

Valid Anagram

URL: https://leetcode.com/problems/valid-anagram/description/

Description:

Given two strings s and t, return true if t is an anagram of s, and false otherwise.

Example 1:

Input: s = "anagram", t = "nagaram"
Output: true

Example 2:

Input: s = "rat", t = "car"
Output: false

Constraints:

1 <= s.length, t.length <= 5 * 10^4
s and t consist of lowercase English letters.

Follow up: What if the inputs contain Unicode characters? How would you adapt your solution to such a case?

Solution Code:

class Solution:
    def isAnagram(self, s: str, t: str) -> bool:
        if len(s) != len(t):
            return False

        s = sorted(s)
        t = sorted(t)

        for i, j in zip(s,t):
            if i == j:
                continue
            elif i != j:
                return False
        return True