Given two strings s and t, return True if t is an anagram of s, and False otherwise.
An anagram is a word formed by rearranging the letters of another word, using every letter exactly once.
Input: s = "anagram", t = "nagaram" Output: True Explanation: Both strings contain exactly the same characters with the same frequencies.
Input: s = "rat", t = "car" Output: False Explanation: "rat" and "car" share some characters but not with the same frequencies.
s and t consist of lowercase English letters.s = "anagram" t = "nagaram"