1892: 端口合并
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:1
Solved:1
Description
每个端口组是长度为 N(1<=N<=100)的整数数组,如果端口组间存在2个及以上不同端口相同,则认为这2个端口组 互相关联,可以合并
Input
Output
1:组合内同端口仅保留一个,并从小到大排序。
Sample Input Copy
4
4
2,3,2
1,2
5
Sample Output Copy
[[4],[2,3],[1,2],[5]]