How to reorder a list with list.shiftlndices

How to reorder a list with nodes,example
[1 2,3,4], [1 2,3,4], [1 2,3,4], [1 2,3,4], Convert to[1 2,3,4],[ 2,3,4,1],[3,4,1,2 ],[4,1,2,3],

This should work. Note that I am using shortest lacing on the List.ShiftIndices node.

2 Likes

thank you