Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Problem S.,(20 points) Consider the following Scheme function: (define (mystery L) (if (null? L) 0 (if (null? (cdr L)) 1 +1 (mystery (cddr L)))) (a)
Problem S.,(20 points) Consider the following Scheme function: (define (mystery L) (if (null? L) 0 (if (null? (cdr L)) 1 +1 (mystery (cddr L)))) (a) (5 points) What is (mystery (list 12 34)) What is (mystery (list 1 2 3 4 5))? (b) (5 points) What is the function computed by mystery? Justify your answer with a proof. (c) (10 points) Now change the last line of mystery so the new definition becomes: (define (mystery L) (if (null? L)0 (if (null? (cdr L)) 1 +(mystery (cdr L)) (mystery (cddr L) What function does mystery now compute? Justify your answer with a proof
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started