Answered step by step
Verified Expert Solution
Question
1 Approved Answer
IN LISP 1. Code the function (repeat atm N) which constructs a new list with atm repeated N times. Example > (repeat 'A 5 2.
IN LISP
1. Code the function (repeat atm N) which constructs a new list with atm repeated N times. Example > (repeat 'A 5 2. Code the function (duplicate lis) which duplicates each atom at the top level of a list. If there is a list at the top-level, that list isn't duplicated, but it is included in the result. Hint: You may have to use either CONS twice or REPEAT Examples (duplicate (A B C)) > (duplicate '(GUM (HAS BEEN) CHEWED)) (GUM GUM (HAS BEEN) CHEWED CHEWED) 3. Code the function (duplicateN lis N) which duplicates each atom at the top level N times. If there is a list at the top-level, it isn't duplicated, but it is included in the result. Hint: APPEND could be useful Examples (duplicateN' (A B C) 2) (duplicateN' (A B C) 3) > (duplicateN GUM (HAS BEEN) CHEWED) 2) (A A B Bc C) (GUM GUM (HAS BEEN) CHEWED CHEWED) 4. Code the function duplicateDeep which duplicates each atom at any level. If there is a list at any level, each atom in that list is duplicated. Hint: APPEND could be useful oeue wtnle D could be usefutStep 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