https://school.programmers.co.kr/learn/courses/30/lessons/87389
class Solution {
fun solution(n: Int): Int {
for (x in 1..n - 1) {
if (n % x == 1) return x
}
return 0
}
}
'Algorithm' 카테고리의 다른 글
프로그래머스 코딩테스트 / 약수의 합 (1) | 2023.12.24 |
---|---|
프로그래머스 코딩테스트 / 자릿수 더하기 (1) | 2023.12.24 |