728x90
https://school.programmers.co.kr/learn/courses/30/lessons/70128
소스코드1
using System;
using System.Linq;
public class Solution {
public int solution(int[] a, int[] b) {
return a.Select((s, idx) => s * b[idx]).Sum();
}
}
소스코드2
using System;
using System.Linq;
public class Solution {
public int solution(int[] a, int[] b) {
return a.Zip(b,(a1, b1) => a1 * b1).Sum();
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
※[프로그래머스]Lv.1 체육복 C#(except) (0) | 2023.06.15 |
---|---|
[프로그래머스]Lv.1 두 개 뽑아서 더하기 C# (0) | 2023.06.15 |
[프로그래머스]Lv.1 음양 더하기 C# (select((s,idx))) (0) | 2023.06.15 |
[프로그래머스]Lv.1 로또의 최고 순위와 최저 순위 C# (0) | 2023.06.15 |
[프로그래머스]Lv.1 약수의 개수와 덧셈 C# (0) | 2023.06.15 |