백준 10809 yourname ⭐

Grace Goh·2022년 9월 12일
0

백준 (python)

목록 보기
24/27
post-custom-banner
yourname = input()

alfabets = "abcdefghijklmnopqrstuvwxyz"

for alfabet in alfabets: # 알파벳 26개에 대해서
	if alfabet in yourname: # 네 이름(인풋)에 있는 알파벳의 경우
        print(yourname.index(alfabet)) # 해당 알파벳의 yourname에서의 인덱스를 출력한다.
    else: 
        print(-1) # 아닐 경우, -1를 출력한다.
profile
Español, Inglés, Coreano y Python

0개의 댓글