관리 메뉴

Jerry

프로그래머스_programmers_서울에서 김서방 찾기 본문

Problem Solving/Algorithm 문제 풀기

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

juicyjerry 2022. 1. 9. 06:14
반응형
function solution(seoul) {
    let index = seoul.indexOf('Kim');
    return '김서방은 ' + index + '에 있다';
    
}
반응형