본문 바로가기
알고리즘 문제풀이/Programmers - 자바

프로그래머스 - 외계어 사전

by 올리브영 2023. 3. 19.
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
반응형