728x90
class Solution {
public int solution(int[] nums) {
int numsArrLength = nums.length;
int cnt = 0;
for (int i = 0; i < numsArrLength; i++) {
for (int j = i + 1; j < numsArrLength; j++) {
for (int h = j + 1; h < numsArrLength; h++) {
int num = nums[i] + nums[j] + nums[h];
for (int k = 2; k <= num; k++) {
if ((num % k) == 0) {
if(num==k) {
cnt++;
}else {
break;
}
}
}
}
}
}
return cnt;
}
}
728x90
'with my rubber duck > codingTest' 카테고리의 다른 글
[프로그래머스] 없는숫자 더하기 (0) | 2022.07.06 |
---|---|
[프로그래머스] 최솟값 만들기 풀어보기 (처음으로 2단계) (0) | 2022.06.24 |
[프로그래머스]직사각형 별찍기(StringBuilder를 알게되다) (0) | 2022.06.13 |
[프로그래머스] 두 정수 사이의 합 (0) | 2022.06.10 |
[프로그래머스] 실패율 풀어보기^^~! (0) | 2022.06.09 |
댓글