I have a 2d(3,2) array and a 1d(3,1) array. Between the 2 they share a column of like values. I would like to search the 1d or 2d array for the like value and then return the corresponding element.
arr1=[0,a],[1,b],[2,c]
arr2=[2],[1],[0]
Expected outcome is =[c],[b],[a]