Initialization

This commit is contained in:
Kozar 2024-03-04 14:16:28 +01:00
parent 21c2ce23d0
commit 1f31eaaf18

View File

@ -17,7 +17,7 @@ int main() {
length = count;
for (int i = length - 1; i >= 0; i--) {
for (int i = length - 1; i > 0; i--) {
result += coefs[0] * coefs[i];
}