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

최유나·2024년 6월 19일
0

프로그래머스

목록 보기
24/53

✨ 서울에서 김서방 찾기

나의 풀이

indexOf() : 호출한 String 객체에서 주어진 값과 일치하는 첫 번째 인덱스를 반환, 일치하는 값이 없으면 -1을 반환

(출처 : String.prototype.indexOf())

function solution(seoul) {
    let answer = seoul.indexOf('Kim');
    // console.log(typeof + 'answer', answer);
    return "김서방은 " + answer + "에 있다";
}

console.log(solution(["Red", "Toy", "Kim"]));
console.log(solution(["Jane", "Kim"]));

다른사람의 풀이

function solution(seoul) {
    var answer = '';
    for (let i = 0; i < seoul.length; i++) {
        if (seoul[i] === "Kim") answer = `김서방은 ${i}에 있다`
    }
    return answer;
}

// 실행을 위한 테스트코드입니다.
console.log(solution(["Queen", "Tod", "Kim"]));

0개의 댓글

관련 채용 정보