
import java.util.*;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int num = sc.nextInt();
int group = 0;
for (int i = 0; i < num; i++) {
String S = sc.next();
boolean check[] = new boolean[26];
boolean tmp = true;
for (int j = 0; j < S.length(); j++) {
int index = S.charAt(j)-'a';
if(check[index]) {
if(S.charAt(j) != S.charAt(j-1)) {
tmp = false;
break;
}
}else {
check[index] = true;
}
}
if(tmp) group++;
}
System.out.println(group);
}
}
코드 리뷰 필요!
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준_JAVA] 15894 수학은 체육과목 입니다 (1) | 2024.01.21 |
---|---|
[백준_JAVA] 3009 네 번째 점 (0) | 2024.01.21 |
[백준_JAVA] 25206 너의 평점은 (0) | 2024.01.21 |
[백준_JAVA] 2292 벌집 (1) | 2023.08.30 |
[백준_JAVA] 2903 중앙 이동 알고리즘 (0) | 2023.08.29 |