-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuestion3.py
57 lines (42 loc) · 1.04 KB
/
Question3.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
56
57
#Accenture Q2
"""
def LargeSmallSum(arr)
The function takes an integral arr which is
of the size or length of its arguments.
Return the sum of the second smallest
element from the odd position ‘arr’ and the
largest element from the even position.
Assumption
* Every array element is unique.
* We are treating the zero position as 7th.
Note
* If the array is empty, return 0.
* If array length is 3 or <3, return 0.
Example
Input:
Arr: 3 2 1 7 5 4
Output:
7
Explanation
The second largest element from the
even position is 3.
The second largest element from the
odd position is 4.
The output is 7 (3 + 4).
Sample input:
Arr: 1 8 0 2 3 5 6
Sample output:
8
"""
def LargeSmallSum(arr):
odd_second_smallest = arr[0]
odd_first_smallest = arr[0]
o=[]
e=[]
[o.append(i) for i in r]
for i in range(len(arr)):
if i%2 == 0 and odd_first_smallest <= arr[i] or odd_second_smallest <= arr[i]:
print('even',arr[i])
else:
print('odd',arr[i])
test_Case_1=LargeSmallSum([3,2,1,7,5,4])