프로그래머스 Lv1. 서울에서 김서방 찾기

용상윤·2021년 2월 26일
0

📌 문제

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


📌 접근


📌 코드

js

function solution(seoul) {
    const loc = seoul.indexOf("Kim");
    return `김서방은 ${loc}에 있다`
}

python

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

✍ 메모

indexOf, index

자바스크립트에서는 indexOf(), 파이썬에서는 index()

profile
달리는 중!

0개의 댓글