파이썬 알고리즘-99 (프로그래머스) 튜플

jiffydev·2021년 1월 19일
0

Algorithm

목록 보기
106/134

코드

def solution(s):
    answer = []
    res={}
    tmp=''
    lst=[]
    for i in s:
        if i.isdecimal():
            tmp+=i
        # tmp를 넣은 이유는 '},{' 에도 콤마가 있기 때문
        elif i==',' and tmp:
            lst.append(int(tmp))
            tmp=''
        # tmp를 넣은 이유는 마지막 에도 '}'가 있기 때문
        elif i=='}' and tmp:
            lst.append(int(tmp))
            res[len(lst)]=lst
            lst=[]
            tmp=''
    res=sorted(res.items())
    
    for i in res:
        for j in i[1]:
            if j not in answer:
                answer.append(j)
    return answer

다른 사람의 풀이

def solution(s):
    answer=[]
    s1=s.lstrip('{').rstrip('}').split('},{')
    new_s=[]
    for i in s1:
        new_s.append(i.split(','))
    
    new_s.sort(key=len)

    for i in new_s:
        for j in i:
            if int(j) not in answer:
                answer.append(int(j))

    return answer
profile
잘 & 열심히 살고싶은 개발자

0개의 댓글