https://school.programmers.co.kr/learn/courses/30/lessons/120869
from itertools import permutations
def solution(spell, dic):
permu_list = []
for p in list(permutations(spell, len(spell))):
p = list(p)
permu_list.append("".join(p))
for p in permu_list:
if p in dic:
return 1
return 2
728x90
반응형
'🔻PS > Programmers' 카테고리의 다른 글
[Programmers] 프로그래머스 뉴스 클러스터링 Python (0) | 2024.05.21 |
---|---|
[Programmers] 프로그래머스 n진수 게임 Python (0) | 2024.05.20 |
[Programmers] 프로그래머스 명예의 전당(1) Python (0) | 2024.05.19 |
[Programmers] 프로그래머스 정수 내림차순으로 배치하기 Python (0) | 2024.05.19 |
[Programmers] 프로그래머스 튜플 Python (0) | 2024.05.16 |