diff options
author | Botond Hende <nettingman@gmail.com> | 2024-12-11 10:18:23 +0100 |
---|---|---|
committer | Botond Hende <nettingman@gmail.com> | 2024-12-11 10:18:23 +0100 |
commit | 0a5c1f77d01fc0bd166494787f24562e2fd3a9e9 (patch) | |
tree | 99b0d38ef86653b6ff4aae26381ebdf0895f829d /2023/day02/solve.py | |
parent | cbf5c348db4a693b15e455a23e07072587edf4b0 (diff) |
renamed day folders to two digit format
Diffstat (limited to '2023/day02/solve.py')
-rw-r--r-- | 2023/day02/solve.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/2023/day02/solve.py b/2023/day02/solve.py new file mode 100644 index 0000000..939b134 --- /dev/null +++ b/2023/day02/solve.py @@ -0,0 +1,24 @@ +def main(): + max_seen_colors = [] + id_sum = 0 + + with open("input", "r") as f: + for line in f: + current_game = {"red": 0, "green": 0, "blue": 0} + line_relevant = line.strip()[line.find(":") + 2:] + for grab in line_relevant.split("; "): + for items_saw in grab.split(", "): + count_and_color = items_saw.split(" ") + current_game[count_and_color[1]] = max(current_game[count_and_color[1]], int(count_and_color[0])) + + max_seen_colors.append(current_game) + + for ii, elem in enumerate(max_seen_colors): + if elem["red"] <= 12 and elem["green"] <= 13 and elem["blue"] <= 14: + id_sum += ii + 1 + + print(id_sum) + + +if __name__ == '__main__': + main() |