Getting Runtime error for this code :-
import numpy as np
def combination(inp,n,k,ans):
if len(ans)==k:
print(*ans)
else:
if len(inp)>0:
b=[]
b=ans.append(inp[0])
combination(inp[1:],n,k,b)
combination(inp[1:],n,k,ans)
n=int(input())
a=list(map(int,input().split()))
a=np.array(a)
k=int(input())
ans=[]
combination(a,n,k,ans)
But why it is showing run Time error for this ?
Recursion is a functional heritage and so using it with functional style yields the best results. This means avoiding things like mutations, variable reassignments, and other side effects.
We can write fixed-length combinations
choosek
using inductive reasoning -k
is zero, yield the empty combinationk
is greater than zero. if the iterableit
is empty, stop iterationk
is greater than zero and the iterableit
has at least one element. for eachcomb
of the sub-problemchoosek(it[1:], k - 1)
, prepend the first element ofit
to the resultingcomb
and yield each result of the sub-problemchoosek(it[1:], k)
Notice the
print
side effect is moved outside of the function so the caller can do whatever they choose with the resulting combinations -