If you have any query feel free to chat us!
Happy Coding! Happy Learning!
Certainly! Here's an example implementation of calculating nCr using recursion in Python:
pythonCopy code
def nCr(n, r):
# Base cases
if r == 0 or r == n:
return 1
# Recursive case
return nCr(n - 1, r - 1) + nCr(n - 1, r)
Let's break down how the code works:
nCr
function takes two parameters: n
(the total number of items) and r
(the number of items to choose).r
is 0 or r
is equal to n
, then it means either we have to choose 0 items or we have to choose all the items. In both cases, there is only one way to do so, and we return 1.nCr = (n-1)Cr-1 + (n-1)Cr
. We make two recursive calls to calculate the combinations for choosing r-1
items from n-1
items and choosing r
items from n-1
items.Here's an example usage of the nCr
function:
pythonCopy code
result = nCr(5, 2)
print(result) # Output: 10
result = nCr(6, 3)
print(result) # Output: 20
In the first example, we calculate the number of combinations for choosing 2 items out of 5 items, which is 10.
In the second example, we calculate the number of combinations for choosing 3 items out of 6 items, which is 20.
Start the conversation!
Be the first to share your thoughts
Quick answers to common questions about our courses, quizzes, and learning platform