class Solution {
public int solution(int slice, int n) {
int answer = n/slice;
if(n%slice >= 1){
answer ++;
}
return answer;
}
}
class Solution {
public int solution(int slice, int n) {
return n % slice > 0 ? n/slice+1 : n/slice;
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 배열 뒤집기 (0) | 2023.03.30 |
---|---|
[프로그래머스/자바] 피자 나눠 먹기(1) (0) | 2023.03.29 |
[프로그래머스/자바] 문자열 내 마음대로 정렬하기 (0) | 2023.03.15 |
[프로그래머스/자바] 가장 가까운 같은 글자 (0) | 2023.03.15 |
[프로그래머스/자바] 신고 결과 받기 (0) | 2023.03.14 |