简体   繁体   中英

Count elements in array of arrays

element = [["BLUE", "CAT", "BEAR"], ["BALL", "CHAIR", "BOW"], ["CLOWN", "COLA", "PARROT", "LOVE"]]

There are obviously ten elements across the arrays. How do I find the count without flattening the array?

使用Ruby 2.4,

element.sum(&:size) #=> 10
ary = [["BLUE", "CAT", "BEAR"], ["BALL", "CHAIR", "BOW"], ["CLOWN", "COLA", "PARROT", "LOVE"]]

sum = ary.inject(0) { |tot, e| tot + e.size }

 => 10
ary.map(&:count).inject(:+)
#⇒ 10

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM