99 Elm Problems/Problem 19/Solutions

Solution 1: Using List.drop and List.take

rotate n list = List.drop n list ++ List.take n list