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