I want to zip even and odd elements in a list to make a list of pairs, like that:
["A", "B", "C", "D", "E", "F"] -> [("A", "B"), ("C", "D"), ("E", "F")]
What is the most concise expression to do this in elegant in functional way?
|
I want to zip even and odd elements in a list to make a list of pairs, like that:
What is the most concise expression to do this in elegant in functional way? |
|||
|
|
|
In 2.8, you'd probably use methods:
(This is 2.8.0 Beta1; the latest trunk has In 2.7--and not a bad runner-up in 2.8--you could create a recursive method as legoscia did:
Edit: here's another briefer approach that works on 2.7 also:
(Note the use of |
||||
|
|
|
in Scala 2.8 you can do:
|
|||||||
|
|
Untested:
|
|||||
|
|
The only advantage of having everyone come up with the most obvious ways of doing it is that I have to think harder about alternate solutions. So here is one that works on Scala 2.8. On Scala 2.7, replace
Strictly speaking, Other fun ways of doing it:
PS: Bonus point to whoever gets the pun. ;-) |
|||||
|
|
||||
|
|
|
This allows incomplete pairs:
|
|||||||
|