码迷,mamicode.com
首页 > 编程语言 > 详细

去除数组中除第一个负数的所有负数

时间:2018-01-30 12:47:22      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:ext   tail   讲解   优点   color   proc   ges   water   image   

技术分享图片

快学Scala上讲解,优点繁琐。 应用数组的差集简单很多。
scala> val arr = Array(1,2,3,4,5,-1,6,-2,7,-3,8,-4,9,-5)
arr: Array[Int] = Array(1, 2, 3, 4, 5, -1, 6, -2, 7, -3, 8, -4, 9, -5)

scala> val r = arr.filter(_ < 0)
r: Array[Int] = Array(-1, -2, -3, -4, -5)

scala> arr.diff(r.tail)
res0: Array[Int] = Array(1, 2, 3, 4, 5, -1, 6, 7, 8, 9)

去除数组中除第一个负数的所有负数

标签:ext   tail   讲解   优点   color   proc   ges   water   image   

原文地址:http://blog.51cto.com/12211918/2066653

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!