summaryrefslogtreecommitdiff
path: root/2018/aoc2018-d01-2.py
diff options
context:
space:
mode:
authorihaveslowbrain <gitserver@ihaveslowbrain.com>2023-10-20 21:32:41 +0000
committerihaveslowbrain <gitserver@ihaveslowbrain.com>2023-10-20 21:32:41 +0000
commitd7fef5244c43526e4f1102f816130f55cf20e8a7 (patch)
treef8668a90bcb9abb34f94ced31900151348f39998 /2018/aoc2018-d01-2.py
parent61073dcec8e896b84fafbd6110e2da55a0dd2d5e (diff)
renamed few files
Diffstat (limited to '2018/aoc2018-d01-2.py')
-rw-r--r--2018/aoc2018-d01-2.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/2018/aoc2018-d01-2.py b/2018/aoc2018-d01-2.py
new file mode 100644
index 0000000..ee8bab2
--- /dev/null
+++ b/2018/aoc2018-d01-2.py
@@ -0,0 +1,32 @@
+print();
+f = open("input");
+
+part1 = 0;
+results = [];
+not_found = True;
+loopcount = 0;
+myinput = [];
+
+for i in f:
+ myinput.append(int(i));
+
+while not_found:
+ for i in myinput:
+ #print(i, "endofline");
+ part1 += i;
+ results.append(part1);
+ #for x in results:
+ if (results.count(part1) > 1):
+ part2 = part1;
+ print(part2);
+ not_found = False;
+ break;
+ loopcount += 1;
+ #print("loop", loopcount);
+
+#results.sort();
+#for i in results:
+# print(i);
+
+print(part1);
+print(part2);