728x90
SMALL

using System;

public class Solution {
    public int solution(int[] a, int[] b) {
        int answer = 0;
        
        for(int i =0;i<a.Length;i++)
        {
            answer += a[i] * b[i];
        }
        return answer;
    }
}

728x90

설정

트랙백

댓글