aoc/template/part_2.ts

22 lines
515 B
TypeScript
Raw Permalink Normal View History

2023-12-01 18:05:44 -05:00
export const main = async (_lines: string[]): Promise<number | string> => {
return 10;
};
2023-12-01 18:05:44 -05:00
//
const isrun = process.argv.length > 1 && process.argv[1] === import.meta.path;
if (isrun) {
const file = Bun.file("./problem.txt");
const text = await file.text();
2023-12-02 13:56:19 -05:00
const lines = text.split("\n").filter((x) => x && x.length);
2023-12-01 18:05:44 -05:00
console.log("=== COMPUTATION ===\n");
const answer = await main(lines);
console.log("\n=== /COMPUTATION ===\n");
console.log("=== ANSWER TO P2 ===");
console.log(answer);
}