👀 문제
https://programmers.co.kr/learn/courses/30/lessons/12919
👊 도전
1. 설계
- 배열 seoul을 탐색하며 “Kim”이 있는 인덱스 번호를 찾아 조건에 맞게 answer에 저장한 후 리턴한다.
2. 구현 (성공 코드)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
*
* @author HEESOO
*
*/
class Solution {
public String solution(String[] seoul) {
String answer = "";
for(int i=0;i<seoul.length;i++){
if(seoul[i].equals("Kim")){
return answer="김서방은 "+i+"에 있다";
}
}
return answer;
}
}
3. 결과
🤟 성공 🤟
4. 설명
- 배열을 순회하며 “Kim”이 있는 인덱스를 찾는다.
👏 해결 완료!
쉽다. 다만 다른 문제들에 비해 테스트 시간이 많이 걸렸다.