Skip to content

Instantly share code, notes, and snippets.

@radavis
Created August 22, 2013 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radavis/6306735 to your computer and use it in GitHub Desktop.
Save radavis/6306735 to your computer and use it in GitHub Desktop.
Min, Max and Average
scores = [75, 100, 85, 65, 84, 87, 95]
p scores
puts "Average: #{scores.inject(0){|sum, i| sum + i} / scores.length.to_f}"
puts "Minimum: #{scores.min}"
puts "Maximum: #{scores.max}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment