Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi.
What way is there to remove certain elements from lists included in a nested list?
If the original list is like this:
'((1 2 3 4) (1 2 3 4) (1 2 3 4))
how to remove elements (nth 1) and (nth 2) from the list to transform it:
'((1 4) (1 4) (1 4))
Solved! Go to Solution.