Skip to content

Commit 1cbf87a

Browse files
committed
Create solution file for part 2
1 parent 9a6a047 commit 1cbf87a

File tree

1 file changed

+12
-0
lines changed
  • puzzles/solutions/2022/d09

1 file changed

+12
-0
lines changed

puzzles/solutions/2022/d09/p2.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import sys
2+
3+
4+
def get_answer(input_text: str):
5+
raise NotImplementedError
6+
7+
8+
if __name__ == "__main__":
9+
try:
10+
print(get_answer(sys.argv[1]))
11+
except IndexError:
12+
pass # Don't crash if no input was passed through command line arguments.

0 commit comments

Comments
 (0)