https://school.programmers.co.kr/learn/courses/30/lessons/64065
def solution(s):
answer = []
s = s[2:-2]
s = s.split("},{")
s.sort(key = len)
for i in s:
_set = i.split(',')
for num in _set:
if int(num) not in answer:
answer.append(int(num))
return answer
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[Python] 정수 삼각형 (0) | 2022.12.08 |
---|---|
[Python] 위장 (0) | 2022.12.07 |
[Python] 포켓몬 (0) | 2022.12.05 |
[Python] 괄호 회전하기 (0) | 2022.12.03 |
[Python] 행렬의 곱셈 (0) | 2022.12.02 |