알파벳 소문자로만 이루어진 단어 S가 주어진다. 각각의 알파벳에 대해서, 단어에 포함되어 있는 경우에는 처음 등장하는 위치를, 포함되어 있지 않은 경우에는 -1을 출력하는 프로그램을 작성
입력: 단어
출력: 알파벳 순서대로 단어에서 처음 등장하는 위치 출력
import sys
def find_alphabet(word):
result = [-1 for i in range(26)]
for i in range(len(word) - 1):
if (result[ord(word[i]) - ord('a')] == -1):
result[ord(word[i]) - ord('a')] = i
else:
continue
return result
if __name__ == '__main__':
word = sys.stdin.readline()
result = find_alphabet(word)
for i in range(26):
print(result[i], end = " ")