View Problem
Gather together corresponding elements from multiple lists
Given several lists, gather together the first element from every list, the second element from every list, and so on for all corresponding index values in the lists. E.g. for these three lists, first =
Submit a new solution for erlang
There are 19 other solutions in additional languages (clojure, cpp, csharp, fantom ...)
['Bruce', 'Tommy Lee', 'Bruce'], last = ['Willis', 'Jones', 'Lee'], years = [1955, 1946, 1940] the result should produce 3 actors. The middle actor should be Tommy Lee Jones.
Submit a new solution for erlang
There are 19 other solutions in additional languages (clojure, cpp, csharp, fantom ...)




