Search code examples
scalafunctional-programmingimperative

functional code to below imperative one in scala


i want to write the functional version for finding the pair of elements with given sum.the below is the imperative code:

object ArrayUtil{

  def findPairs(arr:Array[Int],sum:Int) ={
    val MAX = 50
    val binmap:Array[Boolean] = new Array[Boolean](MAX)

    for(i <- 0 until arr.length){

      val temp:Int = sum-arr(i);
         if (temp>=0 && binmap(temp))
           {
            println("Pair with given sum " + sum + " is (" + arr(i) +", "+temp+")");
           }
      binmap(arr(i)) = true;
       }
    }
}

Solution

  • Study the Standard Library.

    def findPairs(arr:Array[Int],sum:Int): List[Array[Int]] =
      arr.combinations(2).filter(_.sum == sum).toList