Last active
January 5, 2016 16:20
-
-
Save ghaiklor/5b5c0c3cab15b979d0d9 to your computer and use it in GitHub Desktop.
Advent of Code (Day 8 Part 1)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs'); | |
const INPUT = fs.readFileSync('./input.txt', 'utf-8').split('\n'); | |
const result = INPUT.reduce((acc, line) => acc + (line.length - eval(line).length), 0); | |
console.log(result); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment