Hi, There!
안녕하세요, 바오밥입니다.
목차
- 문제
- 풀이
문제
문제 내용
https://school.programmers.co.kr/learn/courses/30/lessons/120869
풀이
나의 풀이
class Solution {
public int solution(String[] spell, String[] dic) {
int cnt = 0;
boolean flag = false;
for(int i=0; i<dic.length; i++) {
cnt = 0;
for(int j=0; j<spell.length; j++) {
if(dic[i].contains(spell[j])) cnt++;
else continue;
}
if(cnt==spell.length) {
flag = true;
break;
}
}
return flag ? 1 : 2;
}
}
'Dev > PS' 카테고리의 다른 글
[프로그래머스-코딩테스트 입문] 평행 (0) | 2023.08.24 |
---|---|
[프로그래머스-코딩테스트 입문] 숨어있는 숫자의 덧셈 (2) (0) | 2023.08.22 |
[프로그래머스-코딩테스트 입문] 삼각형의 완성조건 (2) (0) | 2023.08.22 |
[프로그래머스-코딩테스트 입문] 안전지대 (0) | 2023.08.22 |
[프로그래머스-코딩테스트 입문] 저주의 숫자 3 (0) | 2023.08.22 |