checkMagazine - Hash Tables
///Function Description
Complete the checkMagazine function in the editor below. It must print if the note can be formed using the magazine, or .
checkMagazine has the following parameters:
string magazine[m]: the words in the magazine
string note[n]: the words in the ransom note
//Sample Input 1
6 5
two times three is not four
two times two is four
///Sample Output 1
No
///Explanation 1
'two' only occurs once in the magazine.