Search Results

10
votes

I need to join two lists, sort them and remove duplicates. Is there a better way to do this?

Our neighbourhood friendly Lisp guru pointed out the remove-duplicates function. He also prov …
-1
votes

What is the fastest way (in theory at least) to sort a heap?

Read the items off the top of the heap one by one. Basically what you have then is heap sort. …