Page 1 of 1

PROBLEM 2 (12 pts) - Only the Course Code Remains Write a function which receives as input a list of numbers and returns

Posted: Wed Apr 27, 2022 3:37 pm
by answerhappygod
Problem 2 12 Pts Only The Course Code Remains Write A Function Which Receives As Input A List Of Numbers And Returns 1
Problem 2 12 Pts Only The Course Code Remains Write A Function Which Receives As Input A List Of Numbers And Returns 1 (37.57 KiB) Viewed 36 times
PROBLEM 2 (12 pts) - Only the Course Code Remains Write a function which receives as input a list of numbers and returns as result True if it possible to apply only remove operations on this list and the contents of the list will remain [3,0,8]. def onlyCourseCodeRemains(someList): Some examples: onlyCourseCodeRemains ([1,2,4,3,6,8,5]) --> True onlyCourseCodeRemains ([1,3,4,3,0,7,5]) --> False onlyCourseCodeRemains ([1,3,4,6,7,8,5]) --> True