Pythonアルゴリズム-99(プログラマ)チュートリアル
コード#コード#
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
Reference
この問題について(Pythonアルゴリズム-99(プログラマ)チュートリアル), 我々は、より多くの情報をここで見つけました https://velog.io/@jiffydev/파이썬-알고리즘-99-프로그래머스-튜플テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol