Return `true` if `t` is an anagram of `s`. Variant **#45**.
Example 1
Input: s = "abcdex", t = "xedcba"
Output: true
Constraints
Acceptance: 73% · Topics: string, hash-table, sorting
← All practice problems