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.
defplusMinus(arr):# Write your code herepositive=[]negative=[]zero=[]foriinrange(n):ifarr[i]>0:positive.append(arr[i])elifarr[i]<0:negative.append(arr[i])else:zero.append(arr[i])print(f"{len(positive)/n:.6f}""\n",f"{len(negative)/n:.6f}""\n",f"{len(zero)/n:.6f}",end="\n")
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Plus Minus
You are viewing a single comment's thread. Return to all comments →