w3resource

Find the largest and smallest number from a given list


Write a Scala program to find the largest and smallest number from a given list.

Sample Solution:

Scala Code:

object Scala_List
{
def main(args: Array[String]): Unit = 
 {
   //Iterate over a list
   val nums = List(1, 3, 5, 7, 9, 11, 14, 12)
   println("Original list:")
   println(nums)   
   println("Largest number of the said list:")
   println(nums.max)
   println("Smallest number from the said list:")
   println(nums.min)
  }
}

Sample Output:

Original list:
List(1, 3, 5, 7, 9, 11, 14, 12)
Largest number of the said list:
14
Smallest number from the said list:
1

Go to:


PREV : Write a Scala program to iterate over a list to print the elements and calculate the sum and product of all elements of this list.
NEXT : Write a Scala program to remove duplicates from a given list.

Scala Code Editor :

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

What is the difficulty level of this exercise?



Follow us on Facebook and Twitter for latest update.