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