Iterables and Iterators

  • + 1 comment
    import itertools
    
    N, cases, K = int(input()), input().split(), int(input())
    prob_consist_a = len([combo for combo in itertools.combinations(cases, K) if 'a' in combo]) / len(list(itertools.combinations(cases, K)))
    print(prob_consist_a)
    
    • + 0 comments

      You create the combinations 2 times instead of just one time which would be double the work instead of saving the combinations in a variable. just fyi