99 Elm Problems/Problem 20/Solutions

Solution 1: Using List.take and List.drop

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