Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
860 views
in Technique[技术] by (71.8m points)

scala - How to group a Seq[Array[(Int, Int)]]) by the second value of array

I have a sequence of Seq[(1,0),(2,0),(2,0),(1,1),(1,1),(2,1)]

I would like to modify it to Seq[(1,2,2),(1,1,2)] grouped by the second value

of each map in the array.

I have tried .groupBy(_._2) but it doesn't work. It gives me

value _2 is not a member of scala.collection.immutable.Array[(Int,Int)]

Any ideas?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try this

val input = Seq((1,0),(2,0),(2,0),(1,1),(1,1),(2,1))
input.groupBy(_._2).collect{
  case e => e._2.map(_._1)
}
//res3: scala.collection.immutable.Iterable[Seq[Int]] = List(List(1, 1, 2), List(1, 2, 2))

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...