-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
86 lines (63 loc) · 1.94 KB
/
main.py
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
from src.common.file_utils import get_path, read_raw
import re
def part_one(filename: str) -> int:
lines = read_raw(get_path(__file__, filename))
pports = lines.split("\n\n")
valid_pports = []
for p in pports:
valid_fields = 0
for f in p.replace("\n", " ").split():
k, v = f.split(":")
valid_fields += k in checks.keys()
if valid_fields >= 7:
valid_pports.append(p)
return len(valid_pports)
def part_two(filename: str) -> int:
lines = read_raw(get_path(__file__, filename))
pports = lines.split("\n\n")
valid_pports = []
for p in pports:
valid_fields = 0
for f in p.replace("\n", " ").split():
k, v = f.split(":")
if k in checks:
valid_fields += checks[k](v)
if valid_fields >= 7:
valid_pports.append(p)
return len(valid_pports)
def check_byr(s):
return s.isdigit() and 1920 <= int(s) <= 2002
def check_iyr(s):
return s.isdigit() and 2010 <= int(s) <= 2020
def check_eyr(s):
return s.isdigit() and 2020 <= int(s) <= 2030
def check_hgt(s):
try:
val, unit = re.search(r'(\d+)([a-z]{2})', s).groups()
except AttributeError:
return False
if unit not in ["in", "cm"]:
return False
return 59 <= int(val) <= 76 if unit == "in" else 150 <= int(val) <= 193
def check_hcl(s):
return re.search(r'#[a-f\d]{6}', s) is not None
def check_ecl(s):
return s in ["amb", "blu", "brn", "gry", "grn", "hzl", "oth"]
def check_pid(s):
return len(s) == 9 and s.isdigit()
checks = {
"byr": check_byr,
"iyr": check_iyr,
"eyr": check_eyr,
"hgt": check_hgt,
"hcl": check_hcl,
"ecl": check_ecl,
"pid": check_pid,
}
if __name__ == '__main__':
print("---Part One---")
part_one_res = part_one("input.txt")
print(part_one_res)
print("---Part Two---")
part_two_res = part_two("input.txt")
print(part_two_res)