2014年11月7日 星期五

[ 常見問題 ] How to sum array of numbers in Ruby?

Source From Here
Question
I have an array of integers. For example:
  1. array = [123,321,12389]  
Is there any nice way to get the sum of them? An ugly way is:
  1. sum = 0  
  2. array.each { |a| sum+=a }  
How-To
Array in Ruby include Enumerable module. So you can try inject method:


For example:
>> array = [1,2,3,4,5]
=> [1, 2, 3, 4, 5]
>> array.inject(0,:+)
=> 15 # 1+2+3+4+5
>> array.inject(:+)
=> 15
>> array.inject(0){|sum,obj| sum+obj}
=> 15
>> array.inject{|sum,obj| sum+obj}
=> 15


沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...