728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/70128
using System;
public class Solution {
public int solution(int[] a, int[] b) {
int answer = 0;
for (int i = -1; ++i < a.Length;)
answer += a[i] * b[i];
return answer;
}
}
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 음양 더하기 (0) | 2021.09.09 |
---|---|
[프로그래머스 C#] 소수 만들기 (0) | 2021.09.08 |
[프로그래머스 C#] 모의고사 (0) | 2021.09.07 |
[프로그래머스 C#] K번째수 (0) | 2021.09.07 |
[프로그래머스 C#] 체육복 (0) | 2021.09.06 |