📌풀이1. 각 주문을 알파벳 순서로 정렬한 뒤, 조합을 생성한다.2. 생성된 조합이 나타나는 횟수를 기록한 뒤, 각 길이에 대해 가장 많이 주문된 조합을 찾는다.3. 최종적으로 모든 결과를 사전 순으로 정렬하여 반환한다.최악의 경우 10*20*2^10 📌코드import java.util.*;class Solution { public static void getCombination(Map ret, String str, int N, int depth, int start, char[] cur){ if(depth>=N){ if(!ret.containsKey(new String(cur))) ret.put(new String(cur), 0); ret.pu..