Browse Source

Explicitly set expansion rate

ApisNecros 1 year ago
parent
commit
7d390c4d33
1 changed files with 1 additions and 1 deletions
  1. 1 1
      11/11_1.ts

+ 1 - 1
11/11_1.ts

@@ -53,7 +53,7 @@ async function main() {
 
     const input = await LoadInput(11);
 
-    const sm = new StarMap(input);
+    const sm = new StarMap(tests, 1);
     
     console.log(`The sum of the shortest paths between galaxies is: ${sm.solvePart1()}`);
 }