728x90
https://school.programmers.co.kr/learn/courses/30/lessons/131705
소스코드
using System;
public class Solution
{
public int solution(int[] number)
{
int answer = 0;
int a = 0;
int b = 0;
int c = 0;
for (int i = 0; i < number.Length; i++)
{
a = number[i];
for (int j = i + 1; j < number.Length; j++)
{
b = number[j];
for (int k = j + 1; k < number.Length; k++)
{
c = number[k];
if (a + b + c == 0)
answer++;
}
}
}
return answer;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
※[프로그래머스]Lv.1 성격 유형 검사하기 C# (0) | 2023.06.14 |
---|---|
※[프로그래머스]Lv.1 숫자 짝꿍 C# (Enumerable.Repeat,시간복잡도개선) (0) | 2023.06.14 |
[프로그래머스]Lv.1 콜라 문제 C# (0) | 2023.06.14 |
[프로그래머스]Lv.1 옹알이 (2) C# (0) | 2023.06.14 |
※[프로그래머스]Lv.1 햄버거 만들기 C#(시간복잡도오류남 미해결) (0) | 2023.06.13 |