Lv1. 서울에서 김서방 찾기

Hello·2022년 7월 24일
0

코딩테스트 연습 > 서울에서 김서방 찾기

1. 풀이 설명

리스트 seoul에서 "Kim" 의 index 를 찾아서 "김서방은 [index]에 있다"를 반환한다.

2. 나의 풀이

python

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

kotlin

 fun solution(seoul: Array<String>): String 
        = "김서방은 ${seoul.indexOf("Kim")}에 있다"

3. 배운점

python

  1. "{ }".format() 으로 string 에 변수 값을 채울 수 있다.
return "김서방은 {}에 있다".format(seoul.index('Kim'))
  1. kotlinarr.indexOf() == arr.index()
profile
안녕하세요 :)

0개의 댓글