programmers 17677 java

    [프로그래머스, 17677] [1차] 뉴스 클러스터링 (java)

    https://school.programmers.co.kr/learn/courses/30/lessons/17677 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr메모리: 79.4 MB, 시간: 1.86 ms사용 알고리즘: 구현import java.util.*;class Solution { public int solution(String str1, String str2) { // str1의 다중집합 Map set1 = new HashMap(); getSet(str1, set1); // str2의 다중집합 Map set2..