I assume my question has been answered before, but I can't find such an answer anywhere:.
How can I drop the first element from each sublist within a list? I should be able to use
Map[Drop, list,2]
right? But how could I give Drop the arguments it needs from within Map?
Restinstead:Rest /@ list– Karsten7 Jul 14 '16 at 20:02Drop[list, None, 1]. – Karsten7 Jul 14 '16 at 20:08Mapin the documentation forMap, the Pure Functions tutorial, and the Function (&) documentation. – Karsten7 Jul 14 '16 at 20:12