class Solution {
public String solution(String letter) {
StringBuilder sb = new StringBuilder();
String[] morse = {".-", "-...", "-.-.", "-..", ".", "..-.",
"--.", "....", "..", ".---", "-.-", ".-..",
"--", "-.", "---", ".--.", "--.-", ".-.",
"...", "-", "..-", "...-", ".--", "-..-",
"-.--", "--.."};
String[] bits = letter.split(" ");
for(String bit : bits){
for(int i=0; i<morse.length; i++){
if(morse[i].equals(bit)) sb.append((char)(i + 'a'));
}
}
return sb.toString();
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] A로 B 만들기 (0) | 2023.05.18 |
---|---|
[프로그래머스/자바] 팩토리얼 (0) | 2023.05.18 |
[프로그래머스/자바] 신입사원 교육 (0) | 2023.05.17 |
[프로그래머스/자바] 양과 늑대 (0) | 2023.05.16 |
[프로그래머스/자바] 다리를 지나는 트럭 (0) | 2023.05.15 |