ruby-uebungen/Assignment_025/solution/readme.md

13 lines
181 B
Markdown
Raw Permalink Normal View History

2023-05-25 17:47:19 +02:00
# Lösung: Map und Reduce
2023-05-23 09:19:31 +02:00
2023-05-25 17:49:42 +02:00
2023-05-23 09:19:31 +02:00
```ruby
2023-05-25 17:47:19 +02:00
def char_count(array)
counts = array.map { |e| e.length }
counts.reduce(:+)
2023-05-23 09:19:31 +02:00
end
2023-05-25 17:47:19 +02:00
array = %w{ Free Kevin Mitnick }
puts char_count(array)
```