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