class Solution {
public int solution(int n) {
int answer = 0;
for(int i=2; i<n; i++){
if(n%i==1){
return i;
}
}
return -1;
}
}
'프로그래머스' 카테고리의 다른 글
[프로그래머스] 합성수 찾기 (0) | 2022.12.02 |
---|---|
[프로그래머스] 콜라츠 추측 (0) | 2022.12.01 |
[프로그래머스] 없는 숫자 더하기 (0) | 2022.12.01 |
[프로그래머스] 문자열 다루기 기본 (0) | 2022.12.01 |
[프로그래머스] 이진수 더하기 (0) | 2022.12.01 |