We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a6a047 commit 1cbf87aCopy full SHA for 1cbf87a
puzzles/solutions/2022/d09/p2.py
@@ -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