Last active
January 5, 2016 15:59
-
-
Save ghaiklor/d1b10d5a51351f735930 to your computer and use it in GitHub Desktop.
Advent of Code (Day 1 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(''); | |
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