mirror of
https://github.com/Aviortheking/advent-of-code.git
synced 2025-08-06 02:11:59 +00:00
feat: SPEEDRUN day 4
Signed-off-by: Florian BOUILLON <f.bouillon@aptatio.com>
This commit is contained in:
22
2023/day-4/part-1.ts
Normal file
22
2023/day-4/part-1.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
// note: this runs using bun!
|
||||
const file = Bun.file('./input.txt')
|
||||
const text = await file.text()
|
||||
|
||||
const games = text.split('\n')
|
||||
.map((game) => {
|
||||
const [prefix, data] = game.split(':', 2)
|
||||
const [_, id] = prefix.split(/ +/g, 2)
|
||||
const [winningListTxt, chosenListTxt] = data.split('|')
|
||||
const winningNumbers = winningListTxt.trim().split(/ +/g).map((it) => parseInt(it.trim()))
|
||||
const choseNumbers = chosenListTxt.trim().split(/ +/g).map((it) => parseInt(it.trim()))
|
||||
const points = winningNumbers.reduce((p, c) => p + (choseNumbers.includes(c) ? 1 : 0), 0)
|
||||
const finalPoints = Math.max(0, 1 << (points - 1))
|
||||
return {
|
||||
id: id,
|
||||
winning: winningNumbers,
|
||||
chosen: choseNumbers,
|
||||
score: points,
|
||||
points: finalPoints
|
||||
}
|
||||
})
|
||||
console.log(games, games.reduce((p, c) => c.points + p, 0))
|
Reference in New Issue
Block a user