simple question here. how do i go from having the two vectors [1 2 3] [5 7 9] to having this: [1 5] [2 7] [3 9]?
I tried this: (map concat [1 2 3] [ 4 5 6]), but i get "don't know how to create ISeq from: java.lang.Long "
simple question here. how do i go from having the two vectors [1 2 3] [5 7 9] to having this: [1 5] [2 7] [3 9]?
I tried this: (map concat [1 2 3] [ 4 5 6]), but i get "don't know how to create ISeq from: java.lang.Long "