Algorithm 13 - Square(n) Sum
Q.
Description:
Complete the square sum function so that it squares each number passed into it and then sums the results together.
For example, for [1, 2, 2] it should return 9 because 1^2 + 2^2 + 2^2 = 9.
A) #include <stddef.h>
int square_sum(const int *values, size_t count)
{
int sum = 0;
for (; count; count--)
sum += values[count - 1] * values[count - 1];
return sum;
}
Reference
この問題について(Algorithm 13 - Square(n) Sum), 我々は、より多くの情報をここで見つけました
https://velog.io/@ad-astra/Algorithm-13-Squaren-Sum
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
#include <stddef.h>
int square_sum(const int *values, size_t count)
{
int sum = 0;
for (; count; count--)
sum += values[count - 1] * values[count - 1];
return sum;
}
Reference
この問題について(Algorithm 13 - Square(n) Sum), 我々は、より多くの情報をここで見つけました https://velog.io/@ad-astra/Algorithm-13-Squaren-Sumテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol