프로그래머스(Level 1) - 👀 서울에서 김서방 찾기

Gammi·2023년 3월 17일
0

프로그래머스

목록 보기
43/69
post-thumbnail

✔ 문제






✔ 해결


class Solution {
  public int solution(String[] seoul) {
  	String answer = "";
    
    for(int i = 0; i < seoul.length; i++) {
      if(seoul[i].equals("Kim")) {
        answer = "김서방은 " + i + "에 있다";
      }
    }
    
    return answer;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글