student puzzle
for Wednesday
- implement a procedure
remdups: List(t) x (t x t –> bool) –> List(t)
- which given a list, returns a list containing the same elementsin the same order, but with duplicates removed
- equality of elements is determined using the procedure argument
- hint: use filter