Question: help on maple problem

okay i need to write a procedure (call it setDiff) that takes two sets and returns the set of elements in the first list that DO NOT appear in the second.

for example.

setDiff({1,2,3,4,5},{2,4,6,8});

would return

{1,3,5}

 

so stuck. please help!!

Please Wait...