filter bad strings from file
This commit is contained in:
parent
684c10937a
commit
e84a341243
@ -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");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user