I have a vector of the form [ ["H"] ["B"] ["ER"] ["W"] ] and I want a vector of the form [ ["H"] ["B"] ["E"] ["R"] ["W"] ] with the E and the R naturally separated.
I'm quite familiar with map (and reduce) and have been using them a lot but for some reason I can't think of a way to do this easily using map.
Can map produce two elements or more for each input it receives from a sequence? If so how?