반응형
https://programmers.co.kr/learn/courses/30/lessons/12919
<서울에서 김서방 찾기>
첫 풀이 (2020.04.19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class Solution {
public String solution(String[] seoul) {
String answer = "";
for(int i=0;i<seoul.length;i++)
{
if(seoul[i].equals("Kim"))
{
answer = String.format("김서방은 %d에 있다", i);
break;
}
}
return answer;
}
}
|
cs |
반응형
'코테 > 프로그래머스' 카테고리의 다른 글
핸드폰 번호 가리기/java/프로그래머스/Level1 (0) | 2020.04.21 |
---|---|
x만큼 간격이 있는 n개의 숫자/java/프로그래머스/Level1 (0) | 2020.04.20 |
문자열 다루기 기본/java/프로그래머스/Level1 (0) | 2020.04.19 |
두 정수 사이의 합/java/프로그래머스/Level1 (0) | 2020.04.19 |
문자열 내 마음대로 정렬하기/java/프로그래머스/Level1 (0) | 2020.02.23 |