Skip to content

Commit 820b238

Browse files
committed
add template solution for day 25
1 parent 4d2c1df commit 820b238

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)