loom-benchmark-mbpp / 137 /solution /_reference.py
sqy201x's picture
Add files using upload-large-folder tool
6c62356 verified
Raw
History Blame Contribute Delete
194 Bytes
import math
from array import array
def zero_count(nums):
n = len(nums)
n1 = 0
for x in nums:
if x == 0:
n1 += 1
else:
None
return n1/(n-n1)