Skip to content

Instantly share code, notes, and snippets.

@metaperl
Created August 25, 2010 20:52
Show Gist options
  • Select an option

  • Save metaperl/550273 to your computer and use it in GitHub Desktop.

Select an option

Save metaperl/550273 to your computer and use it in GitHub Desktop.
compress([],[]).
compress([X],[X]).
compress([X,X|T], Result) :- compress([X|T], Result).
compress([X,Y|T], [X|Rest]) :- compress([Y|T], Rest).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment