Introduction to Sets

  • + 0 comments
    def average(array):
        # your code goes here
        return sum(set(array))/len(set(array))
    if __name__ == '__main__':
        n = int(input())
        arr = list(map(int, input().split()))
        result = average(arr)
        print(result)