Easy
Given two strings s and t, return true if t is an anagram of s (same letters, same counts).
s
t
true
Input: s = "anagram", t = "nagaram" Output: true
Input: s = "rat", t = "car" Output: false