Given two strings s and t, return true if t is an anagram of s — i.e. it uses exactly the same characters with the same frequencies, just reordered.
s
t
true
"anagram", "nagaram"
"rat", "car"
"a", "ab"