-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday-1.ts
48 lines (34 loc) · 1.21 KB
/
day-1.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import fs from 'fs'
const input = fs.readFileSync('./day-1.input.txt', 'utf-8')
const lines = input.split('\r\n')
let leftLine: number[] = []
let rightLine: number[] = []
for(let tuple of lines){
const [left, right] = tuple.split(', ')
leftLine.push(parseInt(left))
rightLine.push(parseInt(right))
}
leftLine = leftLine.sort((a, b) => a - b)
rightLine = rightLine.sort((a, b) => a - b)
let distances: number[] = []
for(let i = 0; i < leftLine.length; i++){
distances.push(Math.abs(rightLine[i] - leftLine[i]))
}
// I apply a filter to remove NaN values that may appear in the array
// after parsing the input
const resultPartOne = distances
.filter(value => !isNaN(value))
.reduce((sum, value) => sum + value, 0)
// I print the result of the first part of the challenge
console.log(resultPartOne)
// Solution for the second part of the challenge
const countMap: number[] = [];
for(let value of leftLine){
const multiple = value * rightLine.filter(v => v === value).length
if(multiple > 0) {
countMap.push(multiple)
}
}
const resultPartTwo: number = countMap.reduce((accum, value) => accum + value, 0)
// I print the result of the second part of the challenge
console.log(resultPartTwo)