https://leetcode.com/problems/hand-of-straights/ 1. 2022.02.05 시도 소요시간: 35분(11분 구상, 24분 코딩) class Solution { public boolean isNStraightHand(int[] hand, int groupSize) { if ((hand.length % groupSize) != 0) { return false; } // sort Arrays.sort(hand); List nums = new ArrayList(); List counts = new ArrayList(); int prev = -1; for (int i=0; i< hand.length; i++) { if (prev == hand[i]) { counts.set(co..