0242 - Valid Anagram
Last updated
Last updated
Given two strings s and t, return true if t is an anagram of s, and false otherwise.
Input: s = "anagram", t = "nagaram" Output: true
Input: s = "rat", t = "car" Output: false
1 <= s.length, t.length <= 5 * 104 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?