99 Elm Problems/Problem 20/Solutions

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Solution 1: Using List.take and List.drop

removeAt n list = List.take (n - 1) list ++ List.drop n list