Skip to content

Instantly share code, notes, and snippets.

@jmoon90
Created November 16, 2013 16:13
Show Gist options
  • Select an option

  • Save jmoon90/7502028 to your computer and use it in GitHub Desktop.

Select an option

Save jmoon90/7502028 to your computer and use it in GitHub Desktop.
List Statistics.
test_scores = [75, 100, 85, 65, 84, 87, 95]
sum_score = test_scores.inject { |sum, i| (sum + i) }
sorted = test_scores.sort
avg_score = sum_score / test_scores.count
lowest_score = sorted.first
highest_score = sorted.last
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment