Solution 1: Using List.take and List.drop

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