1203. Sort Items by Groups Respecting 🔸 문제 설명There are n items each belonging to zero or one of m groups→ n개의 아이템이 있으며, 각 아이템은 m개의 그룹 중 하나에 속하거나, 어떤 그룹에도 속하지 않을 수 있습니다.where group[i] is the group that the i-th item belongs to and it's equal to -1 if the i-th item belongs to no group.→ group[i]는 i번째 아이템이 속한 그룹 번호이며, 그룹이 없는 경우 -1입니다.The items and the groups are zero indexed.→ 아이템과 그룹 번호는 모두 0번부터 ..