Your question is Primes, Dictionaries, Reverse Words. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
As part of a GlobalLogic QA automation utility, implement one function that performs three independent data-processing tasks. Generate all prime numbers up to a limit, merge key-value pairs into a dictionary, and reverse the order of words in a sentence.
Return the results in a dictionary with exactly these keys: primes, merged, and reversed_sentence.
Implement build_qa_summary(limit, pairs, sentence):
limit is an integer. Return every prime number from 2 through limit, inclusive, in ascending order.pairs is a list of two-element lists, where each pair contains a string key and an integer value. Insert the pairs in order. If a key occurs more than once, its last value replaces the earlier value.sentence is a string containing zero or more words separated by whitespace. Return the words in reverse order, joined by one space. Normalize repeated whitespace in the result.def build_qa_summary(limit, pairs, sentence):