Florian Bouillon 1060cb8a09
Added the four first days of 2015
Yes i'm gonna do them all !

Signed-off-by: Avior <github@avior.me>
2021-12-07 17:03:46 +01:00

8 lines
179 B
TypeScript

import fs from 'fs'
const input = fs.readFileSync(__dirname + '/input.txt').toString()
.split('')
console.log(
"Result:", input.reduce((p, c) => p + (c === '(' ? 1 : -1), 0)
)