-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay4.cs
203 lines (168 loc) · 5.22 KB
/
Day4.cs
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace aoc2020
{
public class Day4 : AocBase
{
public Day4()
{
Console.WriteLine("Day 4");
var input = LoadInput<string>(@"input\day4.txt");
var passports = ParseInput(input, (r) => new Passport(r));
var validPassports = passports.Count(p => p.IsValid());
Console.WriteLine($"Part 1 - {validPassports}");
var validStrictPassports = passports.Count(p => p.IsValidStrict());
Console.WriteLine($"Part 2 - {validStrictPassports}");
}
}
internal class Passport
{
public Passport(string flat)
{
var values = flat.Split(" ");
foreach (var value in values)
{
var property = value.Split(":");
switch (property[0])
{
case "byr":
Byr = property[1];
break;
case "iyr":
Iyr = property[1];
break;
case "eyr":
Eyr = property[1];
break;
case "hgt":
Hgt = property[1];
break;
case "hcl":
Hcl = property[1];
break;
case "ecl":
Ecl = property[1];
break;
case "pid":
Pid = property[1];
break;
case "cid":
Cid = property[1];
break;
}
}
}
public bool IsValid()
{
var hasRequired =
!string.IsNullOrWhiteSpace(Eyr) &&
!string.IsNullOrWhiteSpace(Pid) &&
!string.IsNullOrWhiteSpace(Hcl) &&
!string.IsNullOrWhiteSpace(Byr) &&
!string.IsNullOrWhiteSpace(Iyr) &&
!string.IsNullOrWhiteSpace(Ecl) &&
!string.IsNullOrWhiteSpace(Hgt);
if (hasRequired)
{
return true;
}
return false;
}
public bool IsValidStrict()
{
if (string.IsNullOrWhiteSpace(Eyr) ||
string.IsNullOrWhiteSpace(Pid) ||
string.IsNullOrWhiteSpace(Hcl) ||
string.IsNullOrWhiteSpace(Byr) ||
string.IsNullOrWhiteSpace(Iyr) ||
string.IsNullOrWhiteSpace(Ecl) ||
string.IsNullOrWhiteSpace(Hgt))
{
return false;
}
if (!int.TryParse(Byr, out var byr))
{
return false;
}
if (byr < 1920 || byr > 2002)
{
return false;
}
if (!int.TryParse(Iyr, out var iyr))
{
return false;
}
if (iyr < 2010 || iyr > 2020)
{
return false;
}
if (!int.TryParse(Eyr, out var eyr))
{
return false;
}
if (eyr < 2020 || eyr > 2030)
{
return false;
}
if (!Hgt.EndsWith("cm") && !Hgt.EndsWith("in"))
{
return false;
}
if (Hgt.EndsWith("cm"))
{
if (!int.TryParse(Hgt.Replace("cm", ""), out var hgt))
{
return false;
}
if (hgt < 150 || hgt > 193)
{
return false;
}
}
if (Hgt.EndsWith("in"))
{
if (!int.TryParse(Hgt.Replace("in", ""), out var hgt))
{
return false;
}
if (hgt < 59 || hgt > 76)
{
return false;
}
}
if (Hcl.Length != 7 || !Hcl.StartsWith("#")) {
return false;
}
const string validHair = "0123456789abcdef";
for (var i = 1; i < Hcl.Length; i++) {
if (!validHair.Contains(Hcl[i].ToString().ToLower())) {
return false;
}
}
string[] validEyes = new string[] {
"amb", "blu", "brn", "gry", "grn", "hzl", "oth"
};
if (!validEyes.Contains(Ecl.ToLower())){
return false;
}
if (Pid.Length != 9)
{
return false;
}
if (!int.TryParse(Pid, out var temp1)) {
return false;
}
return true;
}
public string Eyr { get; set; }
public string Pid { get; set; }
public string Hcl { get; set; }
public string Byr { get; set; }
public string Iyr { get; set; }
public string Ecl { get; set; }
public string Hgt { get; set; }
public string Cid { get; set; }
}
}