https://school.programmers.co.kr/learn/courses/30/lessons/120840
정답
class Solution {
static int combination(int n, int m)
{
if(m==0 || n==m)
{
return 1;
}
else
{
return combination(n-1,m-1)+ combination(n-1,m);
}
}
public int solution(int balls, int share) {
int answer = 0;
//서로 다른 balls개 중 share를 뽑는 경우의 수
answer = combination(balls,share);
return answer;
}
}
'Java > 프로그래머스' 카테고리의 다른 글
[JAVA] 프로그래머스 - 2차원으로 만들기 (0) | 2024.04.26 |
---|---|
[JAVA] 프로그래머스 - 점의 위치 구하기 (0) | 2024.04.26 |
[JAVA] 프로그래머스 - 가위 바위 보 (0) | 2024.04.24 |
[JAVA] 프로그래머스 - 모스부호(1) (0) | 2024.04.24 |
[JAVA] 프로그래머스 - 진료순서 정하기 (0) | 2024.04.23 |