I'd like to know how to swap every second element of a list in Haskell.
Example output should look like this:
swap [1,2,3,4,5]
[2,1,4,3,5]
What I have so far is
swap :: [a] -> [a]
swap [] = []
swap (x:xs) = head xs : [x]
but this only swaps the first two elements and any attempt I make to make the function recursive causes errors when I try to load the file that contains the function. Help to make it recursive would be greatly appreciated.
[x]' is applied to two arguments, but its type[a]' has none In the second argument of(:)', namely[x] swap xs' In the expression: head xs : [x] swap xs In an equation for `swap': swap (x : xs) = head xs : [x] swap xs Failed, modules loaded: none." – sineil Nov 13 '11 at 19:34