classSolution:defisNStraightHand(self,hand: List[int],groupSize:int) ->bool:iflen(hand)< groupSize orlen(hand)% groupSize !=0:returnFalse hand.sort()while hand: mini = hand[0]for _ inrange(groupSize):if mini in hand: hand.remove(mini) mini +=1else:returnFalsereturnTrue