-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocumentation.yml
63 lines (63 loc) · 2.82 KB
/
documentation.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
toc:
- name: Day 1 Pt. 1 - Solution 1 (Javascript)
description: |
<h3 style="color:RebeccaPurple">Challenge</h3>
[AoC 2017 Day 1](http://adventofcode.com/2017/day/1) - Take a sequence of
digits and finds the sum of all digits that match the next digit in the list.
<h3 style="color:LightSeaGreen">Included Functions</h3>
children:
- reverseCapchaLoop
- name: Day 1 Pt. 2 - Solution 1 (Javascript)
description: |
<h3 style="color:RebeccaPurple">Challenge</h3>
[AoC 2017 Day 1](http://adventofcode.com/2017/day/1) - Take a sequence of
digits and finds the sum of all digits that match the digit halfway around in the list.
<h3 style="color:LightSeaGreen">Included Functions</h3>
children:
- reverseCapchaLoopHalfWay
- name: Day 2 Pt. 1 - Solution 1 (Javascript)
description: |
<h3 style="color:RebeccaPurple">Challenge</h3>
[AoC 2017 Day 2](http://adventofcode.com/2017/day/2) - Determine the difference
between the largest value and the smallest value; the checksum is the sum
of all of these differences.
<h3 style="color:LightSeaGreen">Included Functions</h3>
children:
- checkSumReducer
- getDiffReducer
- name: Day 2 Pt. 2 - Solution 1 (Javascript)
description: |
<h3 style="color:RebeccaPurple">Challenge</h3>
[AoC 2017 Day 2](http://adventofcode.com/2017/day/2) - Determine the difference
between the only two evenly divisible integers in the sequence; the checksum is the sum
of all of these differences.
<h3 style="color:LightSeaGreen">Included Functions</h3>
children:
- checkSumDivisible
- getDiffDivisible
- name: Day 3 Pt. 1 - Solution 1 (Javascript)
description: |
<h3 style="color:RebeccaPurple">Challenge</h3>
[AoC 2017 Day 3](http://adventofcode.com/2017/day/3) - Determine the length of
the shortest path between the location of a data node in a grid.
<h3 style="color:LightSeaGreen">Included Functions</h3>
children:
- spiralNumberDistanceLoop
- fromPerfectSqr
- name: Day 3 Pt. 1 - Solution 2 (Javascript)
description: |
<h3 style="color:RebeccaPurple">Challenge</h3>
[AoC 2017 Day 3](http://adventofcode.com/2017/day/3) - Determine the length of
the shortest path between the location of a data node in a grid.
<h3 style="color:LightSeaGreen">Included Functions</h3>
children:
- spiralNumberDistance
- midPoint
- name: Day 3 Pt. 2 - Solution 1 (Javascript)
description: |
<h3 style="color:RebeccaPurple">Challenge</h3>
[AoC 2017 Day 3](http://adventofcode.com/2017/day/3) - Determine the length of
the shortest path between the location of a data node in a grid.
<h3 style="color:LightSeaGreen">Included Functions</h3>
children:
- firstLargerValue