ruby-uebungen/Assignment_025/solution
Thomas Smits 58bc23516c Update of exercises 2023-05-25 17:49:42 +02:00
..
readme.md Update of exercises 2023-05-25 17:49:42 +02:00

readme.md

Lösung: Map und Reduce

def char_count(array)
  counts = array.map { |e| e.length }
  counts.reduce(:+)
end

array = %w{ Free Kevin Mitnick }
puts char_count(array)