Solve 2024-06 (using bruteforce)

This commit is contained in:
2024-12-06 21:05:01 +01:00
parent 8e8012e8a5
commit 62baa825f2
8 changed files with 220 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
import { join } from 'path';
import { solveRow } from './index.ts';
declare var self: Worker;
const input = await Bun.file(join(__dirname, 'input.txt')).text();
self.onmessage = (event) => {
const row = event.data as number;
console.log('Start row', row);
const rows = input.split('\n');
const y = rows.findIndex((r) => r.indexOf('^') >= 0);
const x = rows[y].indexOf('^');
const direction = 0;
postMessage(solveRow(rows, row, x, y, direction));
process.exit();
};