mirror of
https://github.com/HenkKalkwater/aoc-2020
synced 2024-11-22 11:05:18 +00:00
Add day 4 part 1
This commit is contained in:
parent
2072fc3ed8
commit
d32366790b
|
@ -8,6 +8,7 @@ import std.getopt;
|
||||||
import day1;
|
import day1;
|
||||||
import day2;
|
import day2;
|
||||||
import day3;
|
import day3;
|
||||||
|
import day4;
|
||||||
import dayutil;
|
import dayutil;
|
||||||
|
|
||||||
immutable string progName = "aoc-2020";
|
immutable string progName = "aoc-2020";
|
||||||
|
@ -16,6 +17,7 @@ void function(string[])[] programs = [
|
||||||
&day1.run,
|
&day1.run,
|
||||||
&day2.run,
|
&day2.run,
|
||||||
&day3.run,
|
&day3.run,
|
||||||
|
&day4.run,
|
||||||
];
|
];
|
||||||
|
|
||||||
void printUsage(string name) {
|
void printUsage(string name) {
|
||||||
|
|
111
source/day4.d
Normal file
111
source/day4.d
Normal file
|
@ -0,0 +1,111 @@
|
||||||
|
import std.algorithm;
|
||||||
|
import std.array;
|
||||||
|
import std.functional;
|
||||||
|
import std.range;
|
||||||
|
import std.stdio;
|
||||||
|
import std.traits;
|
||||||
|
|
||||||
|
import dayutil;
|
||||||
|
|
||||||
|
struct SerName { string name; };
|
||||||
|
struct Passport {
|
||||||
|
@SerName("byr") string birthYear = "";
|
||||||
|
@SerName("cid") string countryId = "";
|
||||||
|
@SerName("ecl") string eyeColour = "";
|
||||||
|
@SerName("eyr") string expireYear = "";
|
||||||
|
@SerName("hcl") string hairColour = "";
|
||||||
|
@SerName("hgt") string height = "";
|
||||||
|
@SerName("iyr") string issueYear = "";
|
||||||
|
@SerName("pid") string passwordId = "";
|
||||||
|
|
||||||
|
bool isValid() {
|
||||||
|
return birthYear.length > 0 && issueYear.length > 0 && expireYear.length > 0
|
||||||
|
&& height.length > 0 && hairColour.length > 0 && eyeColour.length > 0
|
||||||
|
&& eyeColour.length > 0 && passwordId.length > 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
void run(string[] args) {
|
||||||
|
auto lines = stdin.byLineCopy.array;
|
||||||
|
size_t result = parts!size_t(args,
|
||||||
|
() => part1(lines));
|
||||||
|
writeln(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t part1(Range)(Range range) if (isInputRange!Range) {
|
||||||
|
return range.tokenize()
|
||||||
|
.map!(x => x.deserialize!Passport)
|
||||||
|
.filter!(x => x.isValid)
|
||||||
|
.count;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Deserializes a type from an array in the form of [[key, value], ...] where key an value are
|
||||||
|
* strings.
|
||||||
|
*
|
||||||
|
* NOTE: THE NAME OF THE FIELDS WITHIN T MUST BE ORDERED ALPHABETICALLY!
|
||||||
|
*/
|
||||||
|
T deserialize(T, Range)(Range r)
|
||||||
|
if (isForwardRange!Range && isAggregateType!T) {
|
||||||
|
|
||||||
|
import std.conv;
|
||||||
|
|
||||||
|
T result;
|
||||||
|
string fName;
|
||||||
|
alias pred = x => to!string(x[0]) == fName;
|
||||||
|
static foreach(index, field; T.tupleof) {
|
||||||
|
static if (hasUDA!(field, SerName)) {
|
||||||
|
fName = getUDAs!(field, SerName)[0].name;
|
||||||
|
} else {
|
||||||
|
fName = field.stringof;
|
||||||
|
}
|
||||||
|
if (r.canFind!(pred)) {
|
||||||
|
result.tupleof[index] = to!(typeof(field))(r.save.find!(pred)[0][1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
unittest {
|
||||||
|
struct Example {
|
||||||
|
string foo;
|
||||||
|
@SerName("baz") int bar;
|
||||||
|
}
|
||||||
|
Example example = deserialize!Example([["foo", "12"], ["baz", "32"]]);
|
||||||
|
assert(example.foo == "12");
|
||||||
|
assert(example.bar == 32);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Takes the input as a range of a array of a string per line
|
||||||
|
*
|
||||||
|
* returns: [[[key, value], ...], ...]
|
||||||
|
*/
|
||||||
|
auto tokenize(Range)(Range range) if (isInputRange!Range) {
|
||||||
|
return range.splitter!(x => x.length == 0)
|
||||||
|
.map!(records => records.joiner(" "))
|
||||||
|
.map!(records => records.array.splitter(' ').map!(record => record.splitter(':').array).array
|
||||||
|
.sort!(((a,b) => a[0] < b[0])));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
unittest {
|
||||||
|
import std.string;
|
||||||
|
string testdata = q"EOS
|
||||||
|
ecl:gry pid:860033327 eyr:2020 hcl:#fffffd
|
||||||
|
byr:1937 iyr:2017 cid:147 hgt:183cm
|
||||||
|
|
||||||
|
iyr:2013 ecl:amb cid:350 eyr:2023 pid:028048884
|
||||||
|
hcl:#cfa07d byr:1929
|
||||||
|
|
||||||
|
hcl:#ae17e1 iyr:2013
|
||||||
|
eyr:2024
|
||||||
|
ecl:brn pid:760753108 byr:1931
|
||||||
|
hgt:179cm
|
||||||
|
|
||||||
|
hcl:#cfa07d eyr:2025 pid:166559648
|
||||||
|
iyr:2011 ecl:brn hgt:59in
|
||||||
|
EOS";
|
||||||
|
assert(testdata
|
||||||
|
.lineSplitter.part1 == 2);
|
||||||
|
}
|
Loading…
Reference in a new issue