<문제 제시>
<문제설명>
PROGRAMMERS-962 행성에 불시착한 우주비행사 머쓱이는
외계행성의 언어를 공부하려고 합니다. 알파벳이 담긴 배열 spell과 외계어 사전 dic이 매개변수로 주어집니다.
spell에 담긴 알파벳을 한번씩만 모두 사용한 단어가 dic에 존재한다면 1,
존재하지 않는다면 2를 return하도록 solution 함수를 완성해주세요.
<예시 입출력>
<문제 해결 과정>
spell에서 주는 알파벳으로 dic에 포함되는 단어를 찾으면 되는 문제인데,
모두 한번씩은 꼭 사용해야하고, 모두 사용되어야한다는 것이다.
p, o, s인 경우 sod eocd... 등에서는 찾을 수 없다.
if(dic[i].contains(spell[j])) {
count++;
System.out.println(dic[i] + "와 일치하는 문자 " + spell[j] + ", 검출 완료");
System.out.println("count가 증가되었습니다 = " + count);
if(count == spell.length) {
System.out.println("count 수 (" + count + ")와 spell의 길이가 일치하므로 answer의 값을 갱신합니다.");
answer = 1;
}
continue;
}
비록 하드코딩이지만 contains 메서드를 활용하여 이중 for문속에서 조건을 일치하는 것을 찾을 수 있었다.
<전체코드>
public class dic_alien {
public static 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++;
System.out.println(dic[i] + "와 일치하는 문자 " + spell[j] + ", 검출 완료");
System.out.println("count가 증가되었습니다 = " + count);
if(count == spell.length) {
System.out.println("count 수 (" + count + ")와 spell의 길이가 일치하므로 answer의 값을 갱신합니다.");
answer = 1;
}
continue;
}
else {
System.out.println("'" + spell[j] + "'는 '" + dic[i] + "'에 해당하는 값이 아닙니다. 다음 문장을 검사합니다.");
}
}
count = 0;
}
return answer;
}
public static void main(String[] args) {
// String[] spell = {"p", "o", "s"};
// String[] dic = {"sod", "eocd", "qixm", "adio", "soo"};
String[] spell = {"z", "d", "x"};
String[] dic = {"def", "dww", "dzx", "loveaw"};
System.out.println(solution(spell, dic));
}
}
.contains() 와 equals() 메서드의 선정도 중요한 문제인 것 같았다.
contains를 통해 equals() (일치하는 것)이 아닌 '포함되는 것'을 찾아낼 수 있었다.
문제링크)
https://school.programmers.co.kr/learn/courses/30/lessons/120869
'Algorithms > 프로그래머스' 카테고리의 다른 글
[프로그래머스] '겹치는 선분의 길이' - Java (1) | 2023.05.20 |
---|---|
[프로그래머스] '평행' - Java (1) | 2023.05.19 |
[프로그래머스] '삼각형의 완성조건 (2)' - Java (1) | 2023.05.17 |
[프로그래머스] '안전지대' - Java (0) | 2023.05.16 |
[프로그래머스] '숨어있는 숫자의 덧셈 (2)' - Java (0) | 2023.05.16 |