首页 > 其他 > 详细

ProductByFoldLeft

时间:2016-04-19 22:46:42      阅读:179      评论:0      收藏:0      [点我收藏+]
object ProductByFoldLeft {

  def product(as: List[Double]): Double = FoldLeft.foldLeft(as, 1.0)(_ * _)

  def main(args: Array[String]): Unit = {
    println(product(List(1.0, 2, 3, 4, 5)))
    println(product(List(1.0)))
    println(product(List(1, 2, 0.0, 4, 5)))
  }

}
120.0
1.0
0.0

 

ProductByFoldLeft

原文:http://www.cnblogs.com/JonkeyGuan/p/5410440.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!