배열의 합을 구하면 되는 간단한 문제다.
코드
int simpleArraySum(int ar_count, int* ar) {
int sum=0, i;
for(i=0; i<ar_count; i++){
sum += ar[i];
}
return sum;
}
sum 변수를 선언해서 for문으로 ar배열에 있는 값들을 더했다.
'HackerRank > Algorithms' 카테고리의 다른 글
[HackerRank] Implementation > Drawing Book (0) | 2021.08.08 |
---|---|
[HackerRank C] Implementation : Angry Professor (0) | 2021.08.01 |
[HackerRank C] Implementation : Sales by Match (0) | 2021.07.28 |
[HackerRank C] Warmup : Plus Minus (0) | 2021.07.28 |
[HackerRank C] Warmup : Birthday Cake Candles (0) | 2021.07.28 |