문제설명
해결방안
using System;
public class Solution {
public int solution(int[] number) {
int count = 0;
for(int i = 0; i < number.Length; i++)
{
for(int j = i+1; j < number.Length; j++)
{
for(int k = j+1; k < number.Length; k++)
{
if(number[i] + number[j] + number[k] == 0)
{
count++;
}
}
}
}
return count;
}
}
'알고리즘' 카테고리의 다른 글
프로그래머스 C# 최소직사각형 (0) | 2024.06.27 |
---|---|
프로그래머스 C# 크기가 작은 부분 문자 (0) | 2024.06.27 |
프로그래머스 C# 이상한 문자 만들기 (0) | 2024.06.25 |
프로그래머스 C# 3진법 뒤집기 (0) | 2024.06.25 |
프로그래머스 C# 최대공약수와 최소공배수 (0) | 2024.06.25 |