SITE ADMIN: WOULD YOU PLEASE REMOVE THIS POST?
For example, I have
tt = [0, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 0, 0, 0, 0, 0]
and I would like to slim it down to
tt_out = [0, 1, 1, 2, 2, 1, 1, 0, 0]
also I’d like to know when does the repetition begins and ends, hence I’d like to have the following tip
tip = '0','1.','.5','6.','.11','12.','.15','16.','.20'
P.S: You’ve got an error in your example, the last element of tip should be ‘.20’