< 99 Elm Problems

Write a function to remove consecutive duplicates of list elements.

import Html exposing (text)
import List

compress : List a -> List a
-- your implementation goes here

main = text (toString (compress [1, 1, 2, 2, 3, 3, 3, 4, 5, 4, 4, 4, 4]))

Result:

[1, 2, 3, 4, 5, 4]

Solutions

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.