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