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