Browse Source

Remove extra whitespace

ApisNecros 3 tháng trước cách đây
mục cha
commit
620b92882f
1 tập tin đã thay đổi với 2 bổ sung3 xóa
  1. 2 3
      1/1_1.js

+ 2 - 3
1/1_1.js

@@ -5,7 +5,7 @@ const input = loadInput(1, parseInput);
 solve(input);
 
 /**
- * @param {string} inputData 
+ * @param {string} inputData
  * @returns {number[][]}
  */
 function parseInput(inputData) {
@@ -28,7 +28,7 @@ function parseInput(inputData) {
 }
 
 /**
- * @param {number[][]} parsedInput 
+ * @param {number[][]} parsedInput
  */
 function solve(parsedInput) {
     // separate out the already sorted left and right list
@@ -41,5 +41,4 @@ function solve(parsedInput) {
     }
 
     console.log("List Distance: ", eval(deltaList.join("+")));
-    
 }