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