My solutions for the Advent of Code (https://adventofcode.com/)
 
 
 
 
 
 
Go to file
Eric Wagoner f4aba7ad51 Added readme 2017-12-01 15:28:13 -05:00
README.md Added readme 2017-12-01 15:28:13 -05:00
day1a.js Day one solutions 2017-12-01 15:24:32 -05:00
day1b.js Day one solutions 2017-12-01 15:24:32 -05:00

README.md

adventofcode2017

Day One

Both of these solutions are in node.js, converting the captcha string into an array, and then iterating through the array converting the chars to integers and perfoming a sum if one interger matches the next (part one) or the intewger "opposite" it in the circular array (part two).