1. Consider the shell output for this mystery function. We can see the expected input and output. Write your function for mystery1() >>> mystery1([1,2,3,4,5]) >>> list1 = [1,2,3,4,5] >>> mystery1 (list1) >>> list1 [5, 2, 3, 4, 1] >>> list2 = [17,1,82,18,19,3] >>> mystery1(list2) >>> list2 [3, 1, 82, 18, 19, 17] 2. Consider the shell output for this mystery function. We can see the expected input and output. Write your function for mystery2() >>> mystery2([1,3,5,7], 1) True >>> mystery2([1,3,5,7], 2) False >>> mystery2([1,3,5,7], 3) True >>> mystery2([1,8,17,6,42,50,3], 4) False >>> mystery2([1,8,17,6,42,50,3], 5) False >>> mystery2([1,8,17,6,42,50,3], 6) True

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter13: Overloading And Templates
Section: Chapter Questions
Problem 36SA
icon
Related questions
Question

 phyton 

 

1. Consider the shell output for this mystery function. We can see the expected input and output. Write your function for
mystery1()
>>> mystery1([1,2,3,4,5])
>>> list1 = [1,2,3,4,5]
%3D
>>> mystery1 (list1)
>>> list1
[5, 2, 3, 4, 1]
>>> list2 = [17,1,82,18,19,3]
>>> mystery1(list2)
%3D
>>> list2
[3, 1, 82, 18, 19, 17]
2. Consider the shell output for this mystery function. We can see the expected input and output. Write your function for
mystery2()
>>> mystery2([1,3,5,7], 1)
True
>> mystery2([1,3,5,7], 2)
False
>>> mystery2([1,3,5,7], 3)
True
>> mystery2([1,8,17,6,42,50,3], 4)
False
>>> mystery2([1,8,17,6,42,50,3], 5)
False
>>> mystery2([1,8,17,6,42,50,3], 6)
True
Transcribed Image Text:1. Consider the shell output for this mystery function. We can see the expected input and output. Write your function for mystery1() >>> mystery1([1,2,3,4,5]) >>> list1 = [1,2,3,4,5] %3D >>> mystery1 (list1) >>> list1 [5, 2, 3, 4, 1] >>> list2 = [17,1,82,18,19,3] >>> mystery1(list2) %3D >>> list2 [3, 1, 82, 18, 19, 17] 2. Consider the shell output for this mystery function. We can see the expected input and output. Write your function for mystery2() >>> mystery2([1,3,5,7], 1) True >> mystery2([1,3,5,7], 2) False >>> mystery2([1,3,5,7], 3) True >> mystery2([1,8,17,6,42,50,3], 4) False >>> mystery2([1,8,17,6,42,50,3], 5) False >>> mystery2([1,8,17,6,42,50,3], 6) True
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Fundamentals of Input and Output Performance
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
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning