aoc/2015/05/part2.js

10 lines
228 B
JavaScript
Raw Normal View History

2018-12-09 17:40:24 +00:00
const fs = require('fs');
const input = fs.readFileSync('input.txt', 'utf-8').split('\n');
let counter = 0;
for (let str of input) {
if (str.match(/(\w{2}).*\1/g) && str.match(/(\w)\w\1/g))
counter++;
}
console.log(counter)