zip
ABSTRACT
Zips the two given vector
PARAMETERS
| u | the first vector to zip |
| v | the second vector to zip. u and v are expected to be of the same length |
RETURN
a vector of the same length as u and v, but the ith element of the returned vector is {u[i], v[i]}
DECLARATION
func zip(u, v)