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

2020. 6. 21. 19:38프로그래머스/LEVEL 1

class Solution {
  public String solution(String[] seoul) {
      String answer = "";
      
      int temp=0;
      
      for(int i=0; i<seoul.length ; i++){
          if(seoul[i].equals("Kim")){
              temp=i;
              break;
          }
      }
      answer = "김서방은 " + temp + "에 있다";
          return answer;
  }
}

1. 배열탐색 후 문자열 만들면 된다.

2. 정수에 문자열 더해주면 자동으로 문자열로 캐스팅되어 더해짐