1
0
Fork 0
mirror of https://github.com/HenkKalkwater/aoc-2020 synced 2024-11-23 03:25:17 +00:00
aoc-2020/source/day2.d

28 lines
579 B
D
Raw Normal View History

2020-12-02 16:53:43 +00:00
import std.algorithm;
import std.format;
import std.stdio;
import dayutil;
bool isPasswordValid(T)(T line) {
int min, max;
char c;
string password;
line.formattedRead("%d-%d %c: %s", min, max, c, password);
ulong charCount = password.count(c);
return min <= charCount && charCount <= max;
}
void run(string[] args) {
ulong count = stdin.byLine
.count!(l => isPasswordValid(l));
writeln(count);
}
unittest {
assert(isPasswordValid("1-3 a: abcde") == true);
assert(isPasswordValid("1-3 b: cdefg") == false);
assert(isPasswordValid("2-9 c: ccccccccc") == true);
}