(자바) (프로그래머 레벨 2) 뉴스 클러스터링
프로그램 제작자 코드 중심 개발자를 고용하십시오. 스택 기반 위치 일치. 프로그래머를 위한 개발자별 프로필에 가입하고 기술 호환성이 좋은 회사와 연결하십시오. 프로그래머.co.kr 내 솔루션 import java.util.*; class Solution { public int solution(String str1, String str2) { // 2글자씩 자르기 Map<String, Integer> map1 = getSubstringMap(str1.toLowerCase()); Map<String, Integer> map2 = getSubstringMap(str2.toLowerCase()); // map1, map2의 키값을 각각 순회하면서 map3 … Read more