목차
문제 정보
https://school.programmers.co.kr/learn/courses/30/lessons/120840
난이도 : Lv0
유형 : 조합론
문제 풀이
조합 공식을 활용한 재귀식을 통해 풀이를 했다.
nCr = n-1Cr-1 + n-1Cr
코드
class Solution {
fun combination(n: Int, r: Int): Int {
if (n == r || r == 0) {
return 1
}
return combination(n - 1, r - 1) + combination(n - 1, r)
}
fun solution(balls: Int, share: Int): Int {
return combination(balls, share)
}
}
'Algorithm, Problem Solving > 프로그래머스' 카테고리의 다른 글
[프로그래머스][Java] 광고 삽입 (0) | 2024.04.23 |
---|---|
[프로그래머스][Java] 다단계 칫솔 판매 (0) | 2024.03.22 |
[프로그래머스][Kotlin] 정수를 나선형으로 배치하기 (0) | 2023.04.27 |
[프로그래머스][Kotlin] 합성수 찾기 (0) | 2023.03.31 |
[프로그래머스][Kotlin] 연속된 수의 합 (0) | 2023.03.21 |
댓글