Remove Command
- Remove( <List>, <List> )
-
Removes objects from the first list each time they appear in the second list.
Remove({1,3,4,4,9},{1,4,5})
yields list {3,4,9}
.
|
Removes objects from the first list each time they appear in the second list.
Remove({1,3,4,4,9},{1,4,5})
yields list {3,4,9}
.
|