|
@@ -1,5 +1,5 @@
|
|
|
import { StarMap } from "./11_common.ts";
|
|
|
-import { LoadInput, Inspect } from "../common.ts";
|
|
|
+import { LoadInput } from "../common.ts";
|
|
|
|
|
|
async function main() {
|
|
|
const tests = [
|
|
@@ -55,13 +55,6 @@ async function main() {
|
|
|
|
|
|
const sm = new StarMap(input);
|
|
|
|
|
|
- console.log("Empty Columns found:");
|
|
|
- Inspect(sm.emptyColumns);
|
|
|
- console.log("Empty Rows found:");
|
|
|
- Inspect(sm.emptyRows);
|
|
|
- console.log("Galaxies found:");
|
|
|
- console.log(sm.galaxyList);
|
|
|
-
|
|
|
console.log(`The sum of the shortest paths between galaxies is: ${sm.solvePart1()}`);
|
|
|
}
|
|
|
|