From f4aba7ad515635f2c6980aea1e93b97cdc7147ad Mon Sep 17 00:00:00 2001 From: Eric Wagoner Date: Fri, 1 Dec 2017 15:28:13 -0500 Subject: [PATCH] Added readme --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a7a036e --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# 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).