-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path2021-04.py
84 lines (64 loc) · 2.16 KB
/
2021-04.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
########################
##_______TYLERB_______##
########################
# IMPORT
import os
import numpy as np
#CHANGE CD TO ROOT#
abspath = os.path.abspath(__file__)
dname = os.path.dirname(abspath)
os.chdir(dname)
# variables
class Board:
def __init__(self, board_data):
self.data = np.array([data.split() for data in board_data], ndmin=2)
self.virtual_data = self.data.copy()
def mark(self, target):
for irow, row in enumerate(self.virtual_data):
for icell, cell in enumerate(row):
if cell == target:
self.virtual_data[irow][icell] = "X"
def check_for_win(self):
for row in self.virtual_data:
if len(set(row)) == 1:
return True
_transpose_data = np.transpose(self.virtual_data)
for row in _transpose_data:
if len(set(row)) == 1:
return True
return False
def get_score(self, last_draw):
_flatten_data = np.ravel(self.virtual_data)
return sum(int(data) for data in _flatten_data if data != "X") * int(last_draw)
def reset(self):
self.virtual_data = self.data
def solution1(draws, boards):
_draws = draws.copy()
while _draws:
current_draw = _draws.pop(0)
for board in boards:
board.mark(current_draw)
if board.check_for_win():
return board.get_score(current_draw)
def solution2(draws, boards):
_draws = draws.copy()
_boards = boards.copy()
while _draws and _boards:
current_draw = draws.pop(0)
for board in _boards:
board.mark(current_draw)
for i, board in enumerate(_boards):
if board.check_for_win():
winner = _boards.pop(i)
return winner.get_score(current_draw)
if __name__ == "__main__":
with open("input.txt") as file:
data = file.read().splitlines()
draws = data[0].split(",")
boards = [Board(data[i+1:i+6])
for i, line in enumerate(data) if line == ""]
print("\nDIE SQUID!")
print(solution1(draws, boards))
for board in boards:
board.reset()
print(solution2(draws, boards))