product(중복순열)

정현종·2022년 9월 19일
0

알고리즘

목록 보기
3/4

nπr
서로 다른 n개중, 중복을 허용하고 순서가 존재하도록 r개를 뽑는 경우

itertools 이용

import itertools

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

0개의 댓글