본문 바로가기
[업무 지식]/Algorithm

[index] 서울에서 김서방 찾기

by 에디터 윤슬 2024. 12. 18.

링크

https://school.programmers.co.kr/learn/courses/30/lessons/12919

 

프로그래머스

SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프

programmers.co.kr

 

문제

정답 1

def solution(seoul):
	index = seoul.index('Kim')
    return f'김서방은 {index}에 있다'

정답 2

def solution(seoul):
	index = [i for i, name in enumerate(seoul) if name == 'Kim'][0]
    return f'김서방은 {index}에 있다'