[10809번] 알파벳 찾기 python

HYEOB KIM·2023년 6월 2일
0

algorithm

목록 보기
34/44
post-custom-banner

코드 풀이

[10809번] 알파벳 찾기

import sys

s = sys.stdin.readline()

result = [-1] * 26
for i in range(len(s) - 1):
    # 첫 번째로 나타난 위치만 기록 해야 함
    if result[ord(s[i]) - 97] == -1:
        result[ord(s[i]) - 97] = i

for i in result:
    print(i, end=' ')
profile
Devops Engineer

0개의 댓글