Combinations_with_replacement(중복조합)

정현종·2022년 9월 19일
0

알고리즘

목록 보기
4/4

nHr
서로 다른 n개중에서 중복을 허용하되 순서는 없이 r개를 뽑는 경우

itertools 이용

import itertools

arr = [1,2,3,4,5]
r = 2
arrC = itertools.combinations_with_replacement(arr, r)
print(arrC)
profile
hello~ I want to share code with you~

0개의 댓글