SMALL
문제 출처
풀이 코드
from string import ascii_lowercase
temp = input()
answer=[]
for alpha in list(ascii_lowercase):
for i in range(len(temp)):
if alpha == temp[i]:
answer.append(i)
break
else: answer.append(-1)
print(' '.join(str(x) for x in answer))
LIST
'알고리즘-python > 백준 문제' 카테고리의 다른 글
[백준/5622/파이썬(Python3)] 다이얼 (0) | 2021.07.02 |
---|---|
[백준/2675/파이썬(Python3)] 문자열 반복 (0) | 2021.07.02 |
[백준/1157/파이썬(Python3)] 단어 공부 (0) | 2021.06.30 |
[백준/11720/파이썬(Python3)] 숫자의 합 (0) | 2021.06.29 |
[백준/11654/파이썬(Python3)] 아스키코드 (0) | 2021.06.29 |