https://school.programmers.co.kr/learn/courses/30/lessons/120816
정답
class Solution {
public int solution(int slice, int n) {
int answer = 0;
if(n%slice>0)
{
answer = n/slice+1;
}
else
{
answer = n/slice;
}
return answer;
}
}
다른 사람의 풀이
class Solution {
public int solution(int slice, int n) {
int answer = n/slice;
if(n%slice != 0){
answer++;
}
return answer;
}
}
'Java > 프로그래머스' 카테고리의 다른 글
[JAVA] 프로그래머스 - 문자 반복 출력하기 (0) | 2024.04.20 |
---|---|
[JAVA] 프로그래머스 - 옷가게 할인 받기 (1) | 2024.04.19 |
[JAVA] 프로그래머스 - 피자 나눠 먹기(2) (0) | 2024.04.19 |
[JAVA] 프로그래머스 - 중복된 숫자 개수 (0) | 2024.04.19 |
[JAVA] 프로그래머스 - 피자 나눠 먹기(1) (0) | 2024.04.18 |