Ransom Note

Easy

Topics
Hash TableStringCounting

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.

Example 1

Input:  s = "aa", t = "aab"
Output: true

Example 2

Input:  s = "aa", t = "ab"
Output: false

Constraints

  • 1 <= s.length, t.length <= 10^5
  • s and t consist of lowercase English letters.
Run ⌘' · Submit ⌘⏎