introduction to sets hackerrank solution in python code example
Example: introduction to sets hackerrank solution
def average(array):
# your code goes here
return sum(set(array))/len(set(array))
def average(array):
# your code goes here
return sum(set(array))/len(set(array))