class Solution {
public int solution(int n) {
int answer = 0;
for(int i = 1; i <= n; i++) {
answer = i;
if (String.valueOf(i).contains("3") || i % 3 == 0) n++;
}
return answer;
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 다항식 더하기 (0) | 2023.02.07 |
---|---|
[프로그래머스] OX퀴즈 (0) | 2023.02.06 |
[프로그래머스] 등수 매기기 (0) | 2023.02.06 |
[프로그래머스] 이진수 더하기 (0) | 2023.02.05 |
[프로그래머스] 잘라서 배열로 저장하기 (0) | 2023.02.05 |