728x90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import java.util.*;
class Solution {
public int[] solution(int n, String[] words) {
int[] answer = {0, 0};
Set<String> map = new HashSet<>();
map.add(words[0]);
for(int i=1; i<words.length; i++){
if(getFirstChar(words[i]) == getLastChar(words[i-1])
&& !map.contains(words[i])){
map.add(words[i]);
}
else{
// System.out.println(i);
answer[0] = (i%n)+1;
answer[1] = (i/n)+1;
break;
}
}
return answer;
}
private char getFirstChar(String str){
return str.charAt(0);
}
private char getLastChar(String str){
return str.charAt(str.length()-1);
}
}
|
cs |
'알고리즘 풀이 > 프로그래머스' 카테고리의 다른 글
[프로그래머스][JAVA] 구명보트 (그리디) (0) | 2022.04.03 |
---|---|
[프로그래머스][JAVA] 주식가격 (완전탐색) (0) | 2022.04.03 |
[프로그래머스][JAVA] 삼각 달팽이 (구현) (0) | 2022.04.03 |
[프로그래머스][JAVA] 2개 이하로 다른 비트 (비트마스크?) (0) | 2022.04.02 |
[프로그래머스][JAVA] [1차] 프렌즈4블록 (구현) (0) | 2022.04.02 |