I have used 3 questions on this one question already. Everytime I get the response it does not work for every scenario below. I have spent so much time on this question and I would really like to understand it. If you are unable to figure out a code that works for all scenarios then plese reject the question. I can't lose anymore questions on this one. I appreciate your assistance. I have highlighted the 2 scenarios in bold that my tester always get hung up on.   Count dominators def count_dominators(items): An element of items is said to be a dominator if every element to its right (not just the one element that is immediately to its right) is strictly smaller than it. By this definition, the last item of the list is automatically a dominator. This function should count how many elements in items are dominators, and return that count. For example, dominators of [42, 7, 12, 9, 13, 5] would be the elements 42, 13 and 5. Before starting to write code for this function, you should consult the parable of "Shlemiel the painter" and think how this seemingly silly tale from a simpler time relates to today's computational problems performed on lists, strings and other sequences. This problem will be the first of many that you will encounter during and after this course to illustrate the important principle of using only one loop to achieve in a tiny fraction of time the same end result that Shlemiel achieves with two nested loops. Your workload therefore increases only linearly with respect to the number of items, whereas the total time of Shlemiel’s back-and-forth grows quadratically, that is, as a function of the square of the number of items. items Expected result [42, 7, 12, 9, 2, 5] 4 [] 0 [99] 1 [42, 42, 42, 42] 1 range(10**7) 1 range(10**7, 0, -1) 10000000 [-150, -650, 353] 1

CMPTR
3rd Edition
ISBN:9781337681872
Author:PINARD
Publisher:PINARD
Chapter6: Security And Privacy
Section: Chapter Questions
Problem 18QY
icon
Related questions
Question
100%

I have used 3 questions on this one question already. Everytime I get the response it does not work for every scenario below. I have spent so much time on this question and I would really like to understand it. If you are unable to figure out a code that works for all scenarios then plese reject the question. I can't lose anymore questions on this one.

I appreciate your assistance. I have highlighted the 2 scenarios in bold that my tester always get hung up on.

 

Count dominators

def count_dominators(items):

An element of items is said to be a dominator if every element to its right (not just the one element that is immediately to its right) is strictly smaller than it. By this definition, the last item of the list is automatically a dominator. This function should count how many elements in items are dominators, and return that count. For example, dominators of [42, 7, 12, 9, 13, 5] would be the elements 42, 13 and 5.

Before starting to write code for this function, you should consult the parable of "Shlemiel the painter" and think how this seemingly silly tale from a simpler time relates to today's computational problems performed on lists, strings and other sequences. This problem will be the first of many that you will encounter during and after this course to illustrate the important principle of using only one loop to achieve in a tiny fraction of time the same end result that Shlemiel achieves with two nested loops. Your workload therefore increases only linearly with respect to the number of items, whereas the total time of Shlemiel’s back-and-forth grows quadratically, that is, as a function of the square of the number of items.

items

Expected result

[42, 7, 12, 9, 2, 5]

4

[]

0

[99]

1

[42, 42, 42, 42]

1

range(10**7)

1

range(10**7, 0, -1)

10000000

[-150, -650, 353]

1

Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
System Management Strategies
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
CMPTR
CMPTR
Computer Science
ISBN:
9781337681872
Author:
PINARD
Publisher:
Cengage