Changes double to int

This commit is contained in:
Fuzzlemann 2017-07-30 01:24:37 +02:00
parent 152856e886
commit 5d23121011

View File

@ -94,7 +94,7 @@ public class PunchCardGraphCreator {
}
}
double size = array.length * array[0].length;
int size = array.length * array[0].length;
double sum = sum(valueMinusAvg);
return Math.sqrt(sum / size);
}