-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplusMinus.py
55 lines (39 loc) · 922 Bytes
/
plusMinus.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# arr = [1, 2, 0, -1, -1]
# arr.sort()
# n = 0
# z = 0
# p = 0
# def plusemines():
# for a in range(0, len(arr)):
# if arr[a] < 0:
# global n
# n = n + 1
# if arr[a] == 0:
# global z
# z = z + 1
# if arr[a] > 0:
# global p
# print(arr[a])
# p = p + 1
# print(n / (len(arr)), z/(len(arr)), p/(len(arr)), len(arr), n, z, p)
# plusemines()
def plusMinus(arr):
arr.sort()
n = 0
z = 0
p = 0
# Write your code here
for a in range(0, len(arr)):
if arr[a] < 0:
n = n + 1
if arr[a] == 0:
z = z + 1
if arr[a] > 0:
p = p + 1
print(p/len(arr))
print(n/len(arr))
print(z/len(arr))
if __name__ == '__main__':
n = int(input().strip())
arr = list(map(int, input().rstrip().split()))
plusMinus(arr)