99 Elm Problems/Problem 17/Solutions

Solution 1: Using List.take and List.drop

split n list = (List.take n list, List.drop n list)