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 4d2c1df commit 820b238Copy full SHA for 820b238
templates/template-solution-day25.js
@@ -0,0 +1,18 @@
1
+/**
2
+ * Contains solutions for Day 25
3
+ * Puzzle Description: https://adventofcode.com/{{year}}/day/25
4
+ *
5
+ * Day 25 only has a level one problem that is solvable.
6
+ * To solve level two visit the advent of code website.
7
+ */
8
+
9
10
+ * Returns the solution for level one of this puzzle.
11
+ * @param {Object} args - Provides both raw and split input.
12
+ * @param {String} args.input - The original, unparsed input string.
13
+ * @param {String[]} args.lines - Array containing each line of the input string.
14
+ * @returns {Number|String}
15
16
+export const levelOne = ({ input, lines }) => {
17
+ // your code here
18
+};
0 commit comments