Question: Write a procedure (intercalate sep lst) where sep is a string and lst is a list of strings that returns a returns a string consisting
Write a procedure (intercalate sep lst) where sep is a string and lst is a list of strings that returns a returns a string consisting of the concatenation of the elements of lst separated by the string sep. For example (intercalate " " '("I" "love" "functional" "programming")) returns "I love functional programming" and (intercalate "--" '("A" "B" "C" "D")) returns "A--B--C--D".
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
