gistlib
index.tsxconst matrix = [ [3, 2, 1], [5, 4, 3] ]; const transpose = matrix[0].map((_, colIndex) => matrix.map(row => row[colIndex])); console.log(transpose); 155 chars9 lines
const matrix = [ [3, 2, 1], [5, 4, 3] ]; const transpose = matrix[0].map((_, colIndex) => matrix.map(row => row[colIndex])); console.log(transpose);
gistlibby LogSnag