-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path6.py
42 lines (34 loc) · 950 Bytes
/
6.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
import re
regex = "mul\(\d+,\d+\)"
f = open("5.in")
txt = f.read()
txt.split
matches = re.finditer(regex, txt)
dos = re.finditer("do\(\)", txt)
donts = re.finditer("don't\(\)", txt)
sum = 0
store = {}
for match in matches:
store[match.start()] = match.group()
#match = match.removeprefix("mul(")
#match = match.removesuffix(")")
#match = list(map(int, match.split(",")))
#sum += match[0] * match[1]
for do in dos:
store[do.start()] = do.group()
for dont in donts:
store[dont.start()] = dont.group()
store = dict(sorted(store.items()))
do = True
for command in store.values():
if command == "do()":
do = True
elif command == "don't()":
do = False
elif do:
command = command.removeprefix("mul(")
command = command.removesuffix(")")
command = list(map(int, command.split(",")))
sum += command[0] * command[1]
print(command[0], command[1])
print(sum)