📌 문제
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()