728x90
반응형
class Solution {
public int solution(String[] spell, String[] dic) {
int answer = 2;
for(int i=0; i<dic.length; i++){
String[] ars = dic[i].split("");
int count = 0;
for(int j=0; j<spell.length; j++){
if(dic[i].contains(spell[j])){
count++;
}
}
if(count>=spell.length){
return 1;
}
}
return answer;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 소인수분해 (0) | 2023.03.20 |
---|---|
프로그래머스 - 이진수 더하기 (0) | 2023.03.19 |
프로그래머스 - 삼각형의 완성조건 (2) (0) | 2023.03.19 |
프로그래머스 - 문자열 계산하기 (0) | 2023.03.18 |
프로그래머스 - 잘라서 배열로 저장하기 (0) | 2023.03.17 |