- [Link to problem](https://leetcode.com/problems/ransom-note/)
___
### Problem
Given two strings `ransomNote` and `magazine`, return `true`_if_`ransomNote`_can be constructed by using the letters from_`magazine`_and_`false`_otherwise_.
Each letter in `magazine` can only be used once in `ransomNote`.
#### Examples
**Example 1:**
```markdown
**Input:** s = "leetcode"
**Output:** 0
```
**Example 2:**
```markdown
**Input:** s = "loveleetcode"
**Output:** 2
```
**Example 3:**
```markdown
**Input:** s = "aabb"
**Output:** -1
```
#### Constraints
**Constraints:**
-`1 <= s.length <= 105`
-`s` consists of only lowercase English letters.
### Thoughts
Super simple hash map, similar to [[Leetcode First-Unique-Character-In-a-String]]