Valid Anagram
EasyGiven two lowercase strings, print whether the second string is an anagram of the first.
Input format:
- First line: s
- Second line: t
Print `true` or `false`.
Constraints
0 <= s.length, t.length <= 2 * 10^5 Strings contain lowercase English letters.