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 hereplus=0minus=0zero=0foriinarr:ifi>0:plus+=1elifi<0:minus+=1else:zero+=1print(round(plus/len(arr),6))print(round(minus/len(arr),6))print(round(zero/len(arr),6))
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 →