Answered step by step
Verified Expert Solution
Question
1 Approved Answer
It's a LISP Programming problem please help me! I need to make reflect function! This is the question...... replace word by word in the list
It's a LISP Programming problem please help me!
I need to make reflect function!
This is the question......
replace word by word in the list using substitution list(shallow recursion)
(reflect '((I U)(U me)) '(I love U)) => (U love me)
(reflect '((ugly handsome)(is was)(fool genius))
'(Tom thinks he is a fool)) => (Tom thinks he was a genius)
Hint: build a function (reflect-atom x l)
if table = ((i u)(you me))
then
(reflect i table) = u
(reflect want table) = want
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