class Tryouts::Stats

def mean

Calculates and returns the mean for the data passed so far.
def mean
  @sum / @n
end