Introduction to Sets

  • + 0 comments

    For Python3 Platform

    def average(array):
        return sum(set(arr))/len(set(arr))
    
    if __name__ == '__main__':
        n = int(input())
        arr = list(map(int, input().split()))
        result = average(arr)
        print(result)