백준알고리즘 1316번 그룹 단어 체커
백준알고리즘 https://www.acmicpc.net/problem/1316 import java.util.Scanner; public class Main2 { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int count = Integer.parseInt(scan.nextLine().trim()); boolean resultArray[] = new boolean[count]; for(int c=0; c