[10, 100, 1000, 10000].each do |n|
  Benchmark.bm(40) do |b|
    b.report("Average(n=#{n}): ") { (100000/n).times { Average.((1..n).to_a) } }