Skip to content

Commit 9d7d727

Browse files
author
Joth
committed
update day 6
1 parent cae7884 commit 9d7d727

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Advent Of Code 2019, Day 6, Part 1
2+
# Author: Joth (https://github.com/joth00)
3+
4+
from os import path
5+
6+
7+
def main():
8+
text_input = get_raw_input()
9+
pass
10+
11+
12+
def get_raw_input():
13+
return open(retrieve_input_file_path(), 'r').read()
14+
15+
16+
def retrieve_input_file_path():
17+
return path.join(path.dirname(__file__), 'input.txt')
18+
19+
20+
main()

0 commit comments

Comments
 (0)