https://school.programmers.co.kr/learn/courses/30/lessons/120869
정답
class Solution {
public int solution(String[] spell, String[] dic) {
int answer = 2;
int count =0;
for(int i=0; i<dic.length; i++)
{
for(int j=0; j<spell.length; j++)
{
if(dic[i].contains(spell[j]))
{
count++;
//spell과 일치하는 문자의 수가 spell의 길이와 같다면
//spell에 있는 단어를 모두 사용 한 것
if(count==spell.length)
{
answer=1;
}
}
}
//count 초기화
count = 0;
}
return answer;
}
}
'Java > 프로그래머스' 카테고리의 다른 글
[JAVA] 프로그래머스 - 평행 (0) | 2024.05.11 |
---|---|
[JAVA] 프로그래머스 - 저주의 숫자 3 (0) | 2024.05.11 |
[JAVA] 프로그래머스 - 삼각형의 완성 조건(2) (0) | 2024.05.10 |
[JAVA] 프로그래머스 - 안전지대 (0) | 2024.05.10 |
[JAVA] 프로그래머스 - 숨어있는 숫자의 덧셈(2) (0) | 2024.05.10 |