Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Scala sum Map values

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

In Scala, the sum of the map elements can be done by utilizing foldLeft method.

Syntax : m1.foldLeft(0)(_+_._1)

Here, m1 is used for a Map, foldLeft is a method that takes an initial value zero. it will take previous result and add it to the next map key value.

Return Type: It returns the sum of all the elements of the map.

Example #1:




// Scala program of sum()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Creating a map
        val m1 = Map(3 -> "geeks", 1 -> "for", 2 -> "cs")
          
        // Applying sum method
        val result = m1.foldLeft(0)(_+_._1)
          
        // Displays output
        println(result)
      
    }
}

Output:

6

Here, zero in the foldLeft method is the initial value.
Example #2:




// Scala program of sum()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Creating a map
        val m1 = Map(3 -> "geeks", 1 -> "for", 1 -> "for")
          
        // Applying sum method
        val result = m1.foldLeft(0)(_+_._1)
          
        // Displays output
        println(result)
      
    }
}

Output:

4

My Personal Notes arrow_drop_up
Last Updated : 26 Jul, 2019
Like Article
Save Article
Similar Reads