-
Notifications
You must be signed in to change notification settings - Fork 0
/
week4.js
33 lines (25 loc) · 978 Bytes
/
week4.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
/*
--- Day 4: High-Entropy Passphrases ---
A new system policy has been put in place that requires all accounts to use a
passphrase instead of simply a password. A passphrase consists of a series of
words (lowercase letters) separated by spaces.
To ensure security, a valid passphrase must contain no duplicate words.
For example:
aa bb cc dd ee is valid.
aa bb cc dd aa is not valid - the word aa appears more than once.
aa bb cc dd aaa is valid - aa and aaa count as different words.
The system's full passphrase list is available as your puzzle input.
How many passphrases are valid?
*/
const validPassphrases = (passphraseArray) => {
let validCount = 0;
passphraseArray.forEach(passphrase => {
const singlePassphrase = passphrase.split(' '),
passphraseSet = new Set(singlePassphrase);
if (passphraseSet.size === singlePassphrase.length) {
validCount++;
};
});
return validCount;
};
module.exports.validPassphrases = validPassphrases;