[Python]"17"과 같은 문자열로 순열구하기

Yewon Choi·2020년 10월 7일
0

Python

목록 보기
27/29

from itertools import permutations

def solution(numbers):
    a = set()
    for i in range(len(numbers)):
        a |= set(map(int, map("".join, permutations(list(numbers), i + 1))))
    

a의 값
{1, 71, 17, 7}

profile
https://github.com/devAon 찰나의 개발흔적을 남기는 개발블로그 입니다 🐥 https://aonee.tistory.com 에서 Velog로 블로그 이전 작업중입니다 ! 🎶

0개의 댓글