Easy
Given two strings s (the ransom note) and t (the magazine), return true if s can be constructed using the letters of t. Each letter of t can be used at most once.
Input: s = "aa", t = "aab" Output: true
Input: s = "aa", t = "ab" Output: false