소스 검색

Remove unneeded comments

ApisNecros 1 년 전
부모
커밋
9cfa8635dd
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  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}`);
 
 /**