Question: Map/Filter/Apply using Scheme language, Write a function named formatDate that takes in a list of 3 element lists, and using the map function, returns a
Map/Filter/Apply using Scheme language,
Write a function named formatDate that takes in a list of 3 element lists, and using the map function, returns a list of strings, representing each date in the format "MONTH/DAY/YEAR"
In addition, the dates provided in the three element list will be using the month names, which you must convert to numbers.
Here is an example:

> (formatDate CC"January" 1 2017) "Ocotober" 31 1990) C"July" 4 1776))) ("1/1/2017" "10/31/1990" "7/4/1776") > (formatDate CC"January" 1 2017) "Ocotober" 31 1990) C"July" 4 1776))) ("1/1/2017" "10/31/1990" "7/4/1776")
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
