class Solution {
public int solution(int n) {
return n%7 > 0 ? n/7+1 : n/7;
}
}
class Solution {
public int solution(int n) {
return (n + 6) / 7;
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 짝수 홀수 개수 (0) | 2023.03.31 |
---|---|
[프로그래머스/자바] 배열 뒤집기 (0) | 2023.03.30 |
[프로그래머스/자바] 피자 나눠 먹기 (3) (0) | 2023.03.28 |
[프로그래머스/자바] 문자열 내 마음대로 정렬하기 (0) | 2023.03.15 |
[프로그래머스/자바] 가장 가까운 같은 글자 (0) | 2023.03.15 |