From this:
(1, {(1,2), (1,3), (1,4)} )
(2, {(2,5), (2,6), (2,7)} )
...How could we generate this?
((1,2),(1,3),(1,4))
((2,5),(2,6),(2,7))
...And how could we generate this?
(1, 2, 3, 4)
(2, 5, 6, 7)
For a single row I know how to do. The problem is when I have to iterate over many rows AND manipulate internal groups at the same time.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…