-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.py.template
44 lines (28 loc) · 886 Bytes
/
code.py.template
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
# Advent of Code Year $year Day $day solution
# Author = brauni
# Date = $year-12-$day_for_folder
import re
import os
from aocd import submit
from aocd.models import Puzzle
puzzle = Puzzle(year=$year, day=$day)
# with open(os.getcwd() + "/$year/$day_for_folder/example.txt", 'r') as f:
with open(os.getcwd() + "/AoC_private/$year/$day_for_folder/input.txt", 'r') as f:
input = f.read()
input = input.split("\n")
# input = []
# for line in f.readlines():
# input.append(int(line))
# input = [int(line) for line in f.readlines()]
# input = [line for line in f.readlines()]
print(input)
# PART 1
solution_1 = 0
### SOLUTION 1
print("Part One : " + str(solution_1))
submit(solution_1, part="a", day=$day, year=$year)
# PART 2
solution_2 = 0
### SOLUTION 2
print("Part Two : " + str(solution_2))
submit(solution_2, part="b", day=$day, year=$year)