Exercise #1 • Derive a Python recursive function to verify if all the elements in positions 0...N-1 of a list of integers (A) are digits (betwee O and 9). • The function takes two parameters, a reference to the list and an integer that is initially the size of the list. • How to make the call in the main program?

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 20SA
icon
Related questions
icon
Concept explainers
Question

Please right your own code with some commentary.

vérifChiffres ([1,2,3,4,5],5)
True
vérifChiffres([1,2,3,4,-5],5)
False
Transcribed Image Text:vérifChiffres ([1,2,3,4,5],5) True vérifChiffres([1,2,3,4,-5],5) False
Exercise #1
• Derive a Python recursive function to verify if all the
elements in positions 0...N-1 of a list of integers (A)
are digits (betwee 0 and 9).
• The function takes two parameters, a reference to
the list and an integer that is initially the size of the
list.
• How to make the call in the main program?
Transcribed Image Text:Exercise #1 • Derive a Python recursive function to verify if all the elements in positions 0...N-1 of a list of integers (A) are digits (betwee 0 and 9). • The function takes two parameters, a reference to the list and an integer that is initially the size of the list. • How to make the call in the main program?
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Depth First Search
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