Loading...
Given two strings s and t, return True if t is an anagram of s, and False otherwise.
An anagram uses the exact same characters with the exact same frequencies.
anagram nagaram
True
s and t have the same length. In this case, both "anagram" and "nagaram" have 7 characters.True, indicating that "nagaram" is an anagram of "anagram".True