Skip to content

Instantly share code, notes, and snippets.

@ghaiklor
Last active January 5, 2016 15:59
Show Gist options
  • Save ghaiklor/d1b10d5a51351f735930 to your computer and use it in GitHub Desktop.
Save ghaiklor/d1b10d5a51351f735930 to your computer and use it in GitHub Desktop.
Advent of Code (Day 1 Part 1)
const fs = require('fs');
const INPUT = fs.readFileSync('./input.txt', 'utf-8').split('');
const result = INPUT.reduce((floor, direction) => direction === '(' ? ++floor : --floor, 0);
console.log(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment