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