01 · Question
Given two strings s and t, return true if t is an anagram of s, and false otherwise.
Example:
- Input:
s = "anagram", t = "nagaram" - Output:
true
01 · Question
Given two strings s and t, return true if t is an anagram of s, and false otherwise.
Example:
s = "anagram", t = "nagaram"true