Answers for "for scala"

1

how loop in scala

for ((name, count) <- names.zipWithIndex) {
    println(s"$count is $name")
}
Posted by: Guest on March-06-2020
0

how loop in scala

val nums = Seq(1,2,3)
val letters = Seq('a', 'b', 'c')
val res = for {
    n <- nums
    c <- letters
} yield (n, c)
Posted by: Guest on March-06-2020
0

how loop in scala

val names = Seq("chris", "ed", "maurice")
val nums = Seq(1, 2, 3)
Posted by: Guest on March-06-2020

Code answers related to "Scala"

Browse Popular Code Answers by Language