Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/morning-pages.rb

Instance Method Summary collapse

Instance Method Details

#average_lengthObject



18
19
20
# File 'lib/morning-pages.rb', line 18

def average_length
  map(&:length).mean
end

#meanObject



14
15
16
# File 'lib/morning-pages.rb', line 14

def mean
  inject(0, &:+) / count.to_f
end