Exercise 2. Write a loop that swaps adjacent elements of an array of integers. For example,
Array(1, 2, 3, 4, 5) becomes Array(2, 1, 4, 3, 5) .
Solution:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val s = Array(1,2,3,4,5) | |
for( i<-1 until (s.length, 2)) { | |
val t = s(i-1) | |
s(i-1) = s(i) | |
s(i) = t | |
} | |
s | |
//Array[Int] = Array(2, 1, 4, 3, 5) |
values. Use for /yield.
Solution:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val s = Array(1,2,3,4,5) | |
for ( i<-0 until s.length) yield { | |
if ( i%2 == 1) s(i-1) | |
else if(i == s.length-1) s(i) | |
else s(i+1) | |
} | |
//scala.collection.immutable.IndexedSeq[Int] = Vector(2, 1, 4, 3, 5) |
please post the functional programming style version as well please
ReplyDeletel.sliding(2,2).map(x => x.reverse).toList.flatten
Delete