I have a two dimensional list and a one dimensional list. I would like to insert the 1D list into the 2D list as an additional column. For example:
array = {
Though not as practical or efficient as some of the extant methods, here are two more to add to the list:
ArrayPad[array, {0,{0,1}}, List /@ column] PadRight[array, Dimensions[array] + {0, 1}, List /@ column]