Noogλe
search input
Function of the day
Subtracts list 'e' from another list (
list2
).O(nm) complexity.
Inputs
e
-
First list
list2
-
Second list
Examples
lib.lists.subtractLists
usage examplesubtractLists [ 3 2 ] [ 1 2 3 4 5 3 ] => [ 1 4 5 ]