Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to swap every pair of values in my array using for and yield and so far I am very unsuccessful. What I have tried is as follows:

val a = Array(1,2,3,4,5) //What I want is Array(2,1,4,3,5)

for(i<-0 until (a.length-1,2),r<- Array(i+1,i)) yield r

The above given snippet returns the vector 2,1,4,3(and the 5 is omitted)

Can somebody point out what I am doing wrong here and how to get the correct reversal using for and yields?

Thanks

share|improve this question
This is from "Scala for the impatient". Exercise 3.2 – Zotov Apr 5 at 10:12

2 Answers

up vote 6 down vote accepted

It would be easier if you didin't use for/yield:

a.grouped(2)
  .flatMap{ 
    case Array(x,y) => Array(y,x)
    case Array(x) => Array(x)
  }.toArray // Array(2, 1, 4, 3, 5)
share|improve this answer
2  
This is probably a mature way of doing things. I am learning scala and was wondering if the same could be accomplished using for/yield. – sc_ray Apr 15 '12 at 0:30
@sc_ray, The for/yield construction makes things nicer a lot of the time, but this isn't a great match for it. – dhg Apr 15 '12 at 0:45
a.grouped(2).flatMap(_.reverse).toArray

or if you need for/yield (much less concise in this case, and in fact expands to the same code):

(for {b <- a.grouped(2); c <- b.reverse} yield c).toArray
share|improve this answer
I like the use of reverse. Nice. – dhg Apr 15 '12 at 15:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.