In Scala the product of the map elements can be done by utilizing foldLeft method.
Syntax: m1.foldLeft(1)(_*_._1)
Here, m1 is used for a Map, foldLeft is a method that takes an initial value one for product. it will take previous result and multiply it to the next map key value. * and use 1 for the initial value to get the product of values.
Return Type: It returns the product of all the elements of the map.
Example #1:
object GfG
{
def main(args : Array[String])
{
val m 1 = Map( 3 - > "geeks" , 2 - > "for" , 4 - > "for" )
val result = m 1 .foldLeft( 1 )( _ * _ . _ 1 )
println(result)
}
}
|
Here, one in the foldLeft method is the initial value.
Example #2:
object GfG
{
def main(args : Array[String])
{
val m 1 = Map( 3 - > "geeks" , 4 - > "for" , 4 - > "for" )
val result = m 1 .foldLeft( 1 )( _ * _ . _ 1 )
println(result)
}
}
|
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!