nPr 서로 다른 n개중 r개를 순서는 있고, 중복은 없이 뽑는 경우
itertools사용
import itertools r = 2 arr = [1,2,3,4,5] permu = list(itertools.permutations(arr, r)) print(permu)
직접 구현
//