한 걸음 두 걸음
백준 14425 문자열집합 ] 자료구조 HashSet 이용! (Set) 본문
반응형
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int makeSet = sc.nextInt();
int testCase = sc.nextInt();
int result = 0;
sc.nextLine(); //남아있는 개행문자를 제거하기 위해 추가함!
//HashSet을 문자열로 만듭니다.
HashSet<String> hs1 = new HashSet<String>();
for(int i = 0 ; i < makeSet; i++) {
hs1.add(sc.nextLine());
}
for(int i = 0 ; i < testCase; i++) {
String get = sc.nextLine();
if(hs1.contains(get)) result++;
}
System.out.println(result);
}
}
참고링크
https://hackersstudy.tistory.com/26
https://docs.oracle.com/javase/7/docs/api/java/util/HashSet.html
http://tcpschool.com/java/java_collectionFramework_set
반응형
'CSE > baekjoon & swexpert' 카테고리의 다른 글
백준 11723 집합 ] HashSet Collection 사용 (0) | 2019.04.13 |
---|---|
백준 아호코라식 문제 다음에 풀어보자!! 개념공부가 좀 필요해요~ (0) | 2019.04.13 |
백준 1931 회의실배정 (0) | 2019.04.08 |
백준 2217 그리디 알고리즘 ] 로프 (0) | 2019.04.08 |
백준 그리디 10610 ] 30 문제 /JAVA (0) | 2019.04.08 |