728x90
https://school.programmers.co.kr/learn/courses/30/lessons/87389
소스코드
using System;
public class Solution {
public int solution(int n) {
int answer = 0;
answer = n % 2 == 0 ? 3 : 2;
while (true)
{
if (n % answer == 1)
break;
answer += 2;
}
return answer;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.1 없는 숫자 더하기 C#(Except, Sum) (0) | 2023.06.15 |
---|---|
[프로그래머스]Lv.1 최소직사각형 C# (0) | 2023.06.15 |
※[프로그래머스]Lv.1 신고 결과 받기 C# (0) | 2023.06.15 |
※[프로그래머스]Lv.1 성격 유형 검사하기 C# (0) | 2023.06.14 |
※[프로그래머스]Lv.1 숫자 짝꿍 C# (Enumerable.Repeat,시간복잡도개선) (0) | 2023.06.14 |