We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
return sum(set(array))/len(set(array))
and
def average(array):
# your code goes here
return sum(array)/len(array)
where array is list gives different value?
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Introduction to Sets
You are viewing a single comment's thread. Return to all comments →
Why def average(array): # your code goes here