From e84a341243a20268a2daacc4bcb7aadde8e1f8fd Mon Sep 17 00:00:00 2001 From: "Elizabeth (Lizzy) Hunt" Date: Sat, 2 Dec 2023 11:56:04 -0700 Subject: [PATCH] filter bad strings from file --- template/part_1.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/part_1.ts b/template/part_1.ts index ab01f78..75e5755 100644 --- a/template/part_1.ts +++ b/template/part_1.ts @@ -13,7 +13,7 @@ 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(); - const lines = text.split("\n"); + const lines = text.split("\n").filter((x) => x && x.length); console.log("=== COMPUTATION ===\n");