Question https://school.programmers.co.kr/learn/courses/30/lessons/131127 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.krAlgorithm목표로 하는 할인 정보(want + number)와 실제 할인 정보(discount)가 일치하는지 비교하기 위해, HashMap을 사용한다.목표로 하는 할인 정보(want + number)를 저장하는 HashMap을 만든다. ex. {"apple": 3, "banana": 2, ...}할인 정보를 10일 단위로 슬라이딩 윈도우 방식으로 탐색한다.discount 배열에서 연속된 10일 구간씩 검사한다.ex. discount..