Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6597475
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:12:50+00:00 2026-05-25T18:12:50+00:00

val m = Array(10,20,30,30,50,60,70,80) groupBy ( s => s %30 == 0) m(true).map {

  • 0
    val m = Array(10,20,30,30,50,60,70,80) groupBy ( s => s %30 == 0)
    m(true).map { kv => println(kv) }

prints the values 30, 30, 60

I want the indices i.e. 2, 3, 5 to be printed.

How do I go about this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T18:12:51+00:00Added an answer on May 25, 2026 at 6:12 pm
    val m = Array(10,20,30,30,50,60,70,80).zipWithIndex.groupBy(s =>
      s._1 % 30 == 0).map(e => e._1 -> (e._2.unzip._2))
    

    Just FYI, if you only want the true values, then you could go with @missingfaktor’s approach and equally you could partition this:

    val m = Array(10, 20, 30, 30, 50, 60, 70, 80).zipWithIndex.partition(s =>
      s._1 % 30 == 0)._1.unzip._2
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I have this: val a = Array(...) and I write a.par.map(e => someFunc(e))
Basically, I have an array like this: val base_length = Array( 0, 1, 2,
Specifically, I have an array of strings called val, and want to replace all
Let's say I have this collection: val a = Array(Array(1,2,3,4,5),Array(4,5),Array(5),Array(1,2,6,7,8)) Is there a way
I am calling this function: val(array[i][index]) when i try to pass a time stamp
Say I have: class DecisionTree(private val instances: Array[Instance]){ and I want to calculate another
I have this code: val arr: Array[Int] = ... val largestIndex = { var
I have a Scala array of strings: val names:Array[String] = something.map(...) I need to
You have: val array = new Array[Array[Cell]](height, width) How do you initialize all elements
If you have something like: val myStuff = Array(Person(joe,40), Person(mary, 35)) How do you

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.