I would like to distribute one list into 3 lists in order as below.
original = [1,2,3,4,5,6,7,8,9,10] list1 = [1,6,7] list2 = [2,5,8] list3 = [3,4,9,10]