Skip to content

Commit

Permalink
removing unnecessary spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
edubr029 committed May 26, 2023
1 parent 3bdc18f commit 219ee52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions LPEE/vector_function.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ float calcStandardDeviation(int vector[], int maxSize) {

for(rows = 0; rows < maxSize; rows++)
standardDeviation += pow(vector[rows] - mean, 2);

return sqrt(standardDeviation / maxSize);
}

Expand Down Expand Up @@ -197,6 +197,6 @@ int main() {
break;
}
printf("\n");

return 0;
}
}

0 comments on commit 219ee52

Please sign in to comment.