浏览代码

Remove debug statements

ApisNecros 1 年之前
父节点
当前提交
0715813dfb
共有 1 个文件被更改,包括 1 次插入8 次删除
  1. 1 8
      11/11_1.ts

+ 1 - 8
11/11_1.ts

@@ -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()}`);
 }