-
Notifications
You must be signed in to change notification settings - Fork 0
/
ransom-note.js
52 lines (44 loc) · 1.02 KB
/
ransom-note.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/**
* @param {string} ransomNote
* @param {string} magazine
* @return {boolean}
*/
var canConstruct = function (ransomNote, magazine) {
// 数组哈希计数
const countArr = Array(26).fill(0);
for (let char of magazine) {
const index = char.charCodeAt() - "a".charCodeAt();
countArr[index]++;
}
for (let char of ransomNote) {
const index = char.charCodeAt() - "a".charCodeAt();
countArr[index]--;
if (countArr[index] < 0) {
return false;
}
}
return true;
// 哈希表
// const map = new Map();
// for (let char of magazine) {
// if (map.has(char)) {
// const count = map.get(char);
// map.set(char, count + 1);
// } else {
// map.set(char, 1);
// }
// }
// for (let char of ransomNote) {
// if (map.has(char)) {
// const count = map.get(char);
// if (count - 1 < 0) {
// return false;
// } else {
// map.set(char, count - 1);
// }
// } else {
// return false;
// }
// }
// return true;
};