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,907 questions

51,839 answers

573 users

How to find the second largest word in a string with Scala

1 Answer

0 votes
object SecondLargestWordFinder {
  def main(args: Array[String]): Unit = {
    val str = "Scala lets you write less to do more. As a high-level language"
    
    val secondLargestWord = findSecondLargestWord(str)
    
    println(s"The second largest word is: $secondLargestWord")
  }

  def findSecondLargestWord(str: String): String = {
    val words = str.split("\\s+")
    
    val sortedWords = words.distinct.sortBy(-_.length)
    
    if (sortedWords.length > 1) sortedWords(1) else ""
  }
}


  
  
/*
run:
    
The second largest word is: language

*/

 



answered Jan 20, 2025 by avibootz

Related questions

...