Introduction to Sets

  • + 0 comments

    def average(array): high = set(array) divider = len(high) val = sum(high)/divider return round(val,3)