Skip to content

Instantly share code, notes, and snippets.

@ghaiklor
Last active January 5, 2016 16:20
Show Gist options
  • Save ghaiklor/5b5c0c3cab15b979d0d9 to your computer and use it in GitHub Desktop.
Save ghaiklor/5b5c0c3cab15b979d0d9 to your computer and use it in GitHub Desktop.
Advent of Code (Day 8 Part 1)
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