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