RemoveI
RemoveI[ listindex, listorg ]
RemoveI[ listindex, listorg ] returns the list with the elements from listorg at the indices not in listindex.
| Example | in | out |
|---|---|---|
The elements at indices in {1, 3} removed from {a, b, c, d}. |
RemoveI[ {1,3}, { a, b, c, d } ] |
{ b, d } |