This commit is contained in:
2021-11-30 18:47:19 +00:00
commit cf61ecf2ab
6 changed files with 103 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
const fs = require("fs")
const input = fs.readFileSync("input.txt", "utf-8", (err, data) => {
if (err) {
console.error(err)
return
}
}).split("\n").map(line => line.split(","))