-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday2.py
66 lines (49 loc) · 1.18 KB
/
day2.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
# day2.py
# f = open("./outputDatas/day2.txt", "r")
def calculateOutput(noun, verb):
f = open("./inputs/day2.txt", "r")
fileInput = f.read()
fileInput = fileInput.split(',')
outputData = []
# Create an array of integers, there's probably a better way...
i = 0
while i < len(fileInput):
outputData.append(int(fileInput[i]))
i += 1
outputData[1] = noun
outputData[2] = verb
pos = 0
while True:
opcode = int(outputData[pos])
if opcode == 99:
break
else:
input1 = int(outputData[int(outputData[pos+1])])
#print("input1 is", input1)
input2 = int(outputData[int(outputData[pos+2])])
#print("input2 is", input2)
newPos = int(outputData[pos+3])
if opcode == 1:
result = input1 + input2
elif opcode == 2:
result = input1*input2
outputData[newPos] = result
pos += 4
f.close()
return outputData[0]
#calculateOutput(12,2)
#calculateOutput(12,4)
foundMatch = False
target = 19690720
noun = -1
while noun <= 140 and foundMatch == False:
noun += 1
verb = 0
while verb <= 140:
recentOutput = calculateOutput(noun, verb)
if recentOutput == target:
foundMatch = True
print("Answer = ", noun*100 + verb)
break
else:
verb += 1