Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,844 questions

51,765 answers

573 users

How to pick a random value from a map in Scala

1 Answer

0 votes
import scala.util.Random

object RandomPicker {
  def getRandomValue(inputMap: Map[Int, String]): String = {
    val values = inputMap.values.toVector
    val randomIndex = Random.nextInt(values.length)
    
    values(randomIndex)
  }

  def main(args: Array[String]): Unit = {
    val myMap = Map(
      1 -> "C++",
      2 -> "C",
      3 -> "Java",
      4 -> "C#",
      5 -> "Scala",
      6 -> "Python"
    )

    val randomValue = getRandomValue(myMap)
    println(s"Random value: $randomValue")
  }
}
 
 
 
/*
run:
 
Random value: Python
 
*/
 

 



answered Jul 17, 2025 by avibootz

Related questions

3 answers 80 views
1 answer 66 views
1 answer 61 views
3 answers 76 views
3 answers 169 views
...