-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathList-2.py
54 lines (49 loc) · 1.85 KB
/
List-2.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
#Return the number of even ints in the given array. Note: the % "mod" operator computes the remainder, e.g. 5 % 2 is 1.
def count_evens(nums):
r=0
for x in nums:
if x%2==0:
r+=1
return r
#Given an array length 1 or more of ints, return the difference between the largest and smallest values in the array. Note: the built-in min(v1, v2) and max(v1, v2) functions return the smaller or larger of two values.
def big_diff(nums):
return max(nums)-min(nums)
#Return the "centered" average of an array of ints, which we'll say is the mean average of the values, except ignoring the largest and smallest values in the array. If there are multiple copies of the smallest value, ignore just one copy, and likewise for the largest value. Use int division to produce the final average. You may assume that the array is length 3 or more
def centered_average(nums):
l=len(nums)
s=sum(nums)-min(nums)-max(nums)
return s//(l-2)
#Return the sum of the numbers in the array, returning 0 for an empty array. Except the number 13 is very unlucky, so it does not count and numbers that come immediately after a 13 also do not count.
def sum13(nums):
r=0
i=0
while i<len(nums):
if nums[i]==13:
i=i+1
else:
r=r+nums[i]
i=i+1
return r
#Return the sum of the numbers in the array, except ignore sections of numbers starting with a 6 and extending to the next 7 (every 6 will be followed by at least one 7). Return 0 for no numbers.
def sum67(nums):
r=0
six_found=False
i=0
while i < len(nums):
if six_found:
if nums[i]==7:
six_found=False
elif nums[i]==6:
six_found=True
else:
r=r+nums[i]
i=i+1
return r
#Given an array of ints, return True if the array contains a 2 next to a 2 somewhere.
def has22(nums):
i=0
while i < len(nums)-1:
if nums[i]==nums[i+1]==2:
return True
i+=1
return False