permutations(조합)

정현종·2022년 9월 18일
0

알고리즘

목록 보기
1/4

nPr
서로 다른 n개중 r개를 순서는 있고, 중복은 없이 뽑는 경우

itertools사용

import itertools

r = 2
arr = [1,2,3,4,5]
permu = list(itertools.permutations(arr, r))
print(permu)

직접 구현

//
profile
hello~ I want to share code with you~

0개의 댓글