combinations(조합)

정현종·2022년 9월 18일
0

알고리즘

목록 보기
2/4

nCr
서로 다른 n개중 순서와 중복 없이 r개를 뽑는 경우

itertools 사용

import itertools

arr = [1,2,3,4,5]
r = 2

comb = lsit(itertools.combinations(arr, r)
print(comb)
profile
hello~ I want to share code with you~

0개의 댓글