uploaded at 2022. 12. 17. 오후 8:53:40

This commit is contained in:
rl544
2022-12-17 20:53:41 +09:00
parent 5edccc5396
commit b77c690fea
+10
View File
@@ -0,0 +1,10 @@
// [문제 링크]: https://school.programmers.co.kr/learn/courses/30/lessons/70128
class Solution {
public int solution(int[] a, int[] b) {
int answer = 0;
for(int c = 0; c < a.length; c++)
answer += a[c]*b[c];
return answer;
}
}