| |
| | [No title] (Site not responding. Last check: 2007-11-06) |
 | | If one list is shorter, just append all remaining elements from the longer list on the end of the result, for example, intersperse([1,2],[3,4,5]) should give [1,3,2,4,5]. |
 | | Your function will be polymorphic, i.e., it will handle lists of many different element types, with the restriction that the two lists it combines will have to have the same element type. |
 | | Write and run test cases for an empty list, keys that are found in the first, last, and in the middle of a list of at least three pairs. |
| www.cs.wichita.edu /~rodney/cs410/fl2003/assign11 (454 words) |
|