I've been trying to get a list of lists from a list of lists of ints for example:
[[0,0,1,4,7,10,11,12,16],[1,4,4,6,7,7,12,12,19],[0,0,0,2,4,7,11,12,13]]
should yield [[0,1,0],[0,4,0],[1,4,0]..and so on]
I can get [0,1,0] using
map head saidList
And so I've been trying then to use that on the tail of the lists but I can't figure it out.
Any help would be hugely appreciated because this is the final and very small part of a huge project.

saidList:) – Tikhon Jelvis Jan 7 '12 at 20:26