programmers 가장 많이 받은 선물

    [프로그래머스, 258712] 가장 많이 받은 선물 (java)

    https://school.programmers.co.kr/learn/courses/30/lessons/258712 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 메모리: 77.9 MB, 시간: 3.28 ms 사용 알고리즘: 자료구조, 구현 import java.util.*; class Solution { public int solution(String[] friends, String[] gifts) { int answer = 0; // 친구들의 수 int num = friends.length; // 해당 이름의 인덱스를 저장 Map nameIndex =..