Question: proceudre help

program a procedure repeatedEls which takes a list and returns the sublist consisting of all elements that appeared more than once in the given list.

repeatedEls([a,b,c,d,c,d,e,f,a]);

[a,b,c]

Please Wait...