class Solution {
public int solution(int balls, int share) {
return combination(balls, share);
}
public int combination(int A, int B) {
if (A == B || B == 0) return 1;
return combination(A - 1, B) + combination(A - 1, B - 1);
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 7의 개수 (0) | 2023.02.04 |
---|---|
[프로그래머스] 공 던지기 (0) | 2023.02.04 |
[프로그래머스] 문자열 밀기 (0) | 2023.02.04 |
[프로그래머스] 합성수 찾기 (0) | 2023.02.03 |
[프로그래머스] 369게임 (0) | 2023.02.03 |