Iterables and Iterators

  • + 0 comments

    from itertools import combinations n,lst,k = int(input()),input().split(),int(input()) comb_lst = list(combinations(list(range(n)),k)) a_index = [] for i in range(len(lst)): if lst[i] == "a": a_index.append(i) counter = 0 for sublist in comb_lst: for i in sublist: if i in a_index: counter += 1 break probab = counter/len(comb_lst)
    print(probab)