解决方案 1:使用 List.drop 和 List.take
List.drop
List.take
rotate n list = List.drop n list ++ List.take n list