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