Given two strings ransomNote and magazine, return True if ransomNote can be constructed by using the letters from magazine.
Each letter in magazine can only be used once in ransomNote.
The hash map approach: count all letters in magazine, then check if ransomNote's letters are available.
can_construct('a', 'b')
False
can_construct('aa', 'aab')
True