Browse Source

Remove unneeded comments

ApisNecros 1 year ago
parent
commit
9cfa8635dd
1 changed files with 0 additions and 2 deletions
  1. 0 2
      9/9_1.ts

+ 0 - 2
9/9_1.ts

@@ -24,8 +24,6 @@ histograms = histograms.map((histogram, idx) => {
 // Sum all of the last values in the histograms
 const sumOfNewValues = SumArray(histograms.map((histogram) => histogram[histogram.length - 1]));
 
-// Wrong Answers
-// 1987402315 -- too high
 console.log(`The sum of all predicted values is: ${sumOfNewValues}`);
 
 /**