Write a Scheme function that takes a list as a parameter andreturns a list identical to the parameter list except with thesecond top-level element removed. If the given list does not havetwo elements, the function should return ().
Solution
Write a Scheme function that takes a list as a parameter andreturns a list identical to the parameter list except with thesecond top-level element removed. If the given list does not havetwo elements, the function should return ().
Solution