How can I reach the following goal??
Write a function join which, given two lists
, it returns a list
in which each element is a list
of two elements, one from each of the given lists
. For example:
join( [1,2,3] , [”a”,”b”,”c”] )
returns
[ [1,”a”], [2,”b”], [3,”c”] ]
assume that the given lists both have the same length