All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.phasmidsoftware.number.misc.SumOfSquares.scala Maven / Gradle / Ivy

The newest version!
package com.phasmidsoftware.number.misc

import scala.language.postfixOps

/**
  * Created by scalaprof on 10/28/16.
  */
object SumOfSquares extends App {
  def sumOfSquares(xs: Seq[Double]) = xs map (x => x * x) sum

  println(sumOfSquares(Seq(1, 2, 3, 4, 5)))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy