728x90
https://school.programmers.co.kr/learn/courses/30/lessons/76501
소스코드1
using System;
public class Solution
{
public int solution(int[] absolutes, bool[] signs)
{
int answer = 0;
for (int i = 0; i < signs.Length; i++)
answer += signs[i] ? absolutes[i] : -absolutes[i];
return answer;
}
}
소스코드2
using System;
using System.Linq;
public class Solution
{
public int solution(int[] absolutes, bool[] signs)
{
return absolutes.Select((t,idx) => signs[idx] ? t : -t).Sum();
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.1 두 개 뽑아서 더하기 C# (0) | 2023.06.15 |
---|---|
※[프로그래머스]Lv.1 내적 C# (select((s,idx)), zip) (0) | 2023.06.15 |
[프로그래머스]Lv.1 로또의 최고 순위와 최저 순위 C# (0) | 2023.06.15 |
[프로그래머스]Lv.1 약수의 개수와 덧셈 C# (0) | 2023.06.15 |
[프로그래머스]Lv.1 숫자 문자열과 영단어 C# (0) | 2023.06.15 |