Introduction to Sets

  • + 0 comments
    def average(array):
        # your code goes here
        return sum(set(array)) / len(set(array))