nCr 서로 다른 n개중 순서와 중복 없이 r개를 뽑는 경우
itertools 사용
import itertools arr = [1,2,3,4,5] r = 2 comb = lsit(itertools.combinations(arr, r) print(comb)