class Solution {
public int solution(String[] spell, String[] dic) {
int answer = 2;
for(String d : dic) {
boolean isHave = true;
for(String s : spell) {
if(d.indexOf(s) == -1) {
isHave = false;
break;
}
}
if(isHave) {
answer = 1;
break;
}
}
return answer;
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 로그인 성공? (0) | 2023.02.05 |
---|---|
[프로그래머스] 숨어있는 숫자 (0) | 2023.02.05 |
[프로그래머스] 캐릭터의 좌표 (0) | 2023.02.05 |
[프로그래머스] 컨트롤 제트 (0) | 2023.02.04 |
[프로그래머스] 소인수분해 (0) | 2023.02.04 |