Skip to content

Instantly share code, notes, and snippets.

@ghaiklor
Last active January 5, 2016 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ghaiklor/a34c44ca93c4c5cca6e8 to your computer and use it in GitHub Desktop.
Save ghaiklor/a34c44ca93c4c5cca6e8 to your computer and use it in GitHub Desktop.
Advent of Code (Day 8 Part 2)
const fs = require('fs');
const INPUT = fs.readFileSync('./input.txt', 'utf-8').split('\n');
const result = INPUT.reduce((acc, line) => acc + (2 + line.replace(/\\/g, '\\\\').replace(/"/g, '\\"').length - line.length), 0);
console.log(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment