728x90
https://school.programmers.co.kr/learn/courses/30/lessons/181879
소스코드
using System;
using System.Linq;
public class Solution {
public int solution(int[] num_list) {
int answer = 0;
if (num_list.Length >= 11)
answer = num_list.Sum();
else
answer = num_list.Aggregate((cur, next) => cur * next);
return answer;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.0 특정 문자열로 끝나는 가장 긴 부분 문자열 찾기 C#(LastIndexOf, Substring) (0) | 2023.06.08 |
---|---|
[프로그래머스]Lv.0 A 강조하기 C#(Replace) (0) | 2023.06.08 |
[프로그래머스]Lv.0 1로 만들기 C# (0) | 2023.06.08 |
※[프로그래머스]Lv.0 조건에 맞게 수열 변환하기 2 C# (SequenceEqual) (1) | 2023.06.08 |
[프로그래머스]Lv.0 왼쪽 오른쪽 C# (Array.IndexOf, skip, take) (0) | 2023.06.07 |