Python-like Zip Function
Problem
You want to zip together multiple arrays into an array of arrays, similar to Python’s zip function. Python’s zip function returns an array of tuples, where each tuple contains the i-th element from each of the argument arrays.
Solution
Use the following CoffeeScript code: