------Start Matrix: [1, 2, 3][4, 5, 6][7, 8, 9] --------Commencing transposing at index: 0 INNER LIST: [1, 2, 3] position: 0 counter: 0 CURRENT LIST: [1] INNER LIST: [4, 5, 6] position: 0 counter: 0 CURRENT LIST: [1, 4] INNER LIST: [7, 8, 9] position: 0 counter: 0 CURRENT LIST: [1, 4, 7] CURRENT TRANSFORMED MATRIX: [] NEWLY TRANSFORMATION: [[1, 4, 7]] --------Commencing transposing at index: 1 INNER LIST: [1, 2, 3] position: 1 counter: 0 position: 1 counter: 1 CURRENT LIST: [2] INNER LIST: [4, 5, 6] position: 1 counter: 0 position: 1 counter: 1 CURRENT LIST: [2, 5] INNER LIST: [7, 8, 9] position: 1 counter: 0 position: 1 counter: 1 CURRENT LIST: [2, 5, 8] CURRENT TRANSFORMED MATRIX: [[1, 4, 7]] NEWLY TRANSFORMATION: [[1, 4, 7], [2, 5, 8]] --------Commencing transposing at index: 2 INNER LIST: [1, 2, 3] position: 2 counter: 0 position: 2 counter: 1 position: 2 counter: 2 CURRENT LIST: [3] INNER LIST: [4, 5, 6] position: 2 counter: 0 position: 2 counter: 1 position: 2 counter: 2 CURRENT LIST: [3, 6] INNER LIST: [7, 8, 9] position: 2 counter: 0 position: 2 counter: 1 position: 2 counter: 2 CURRENT LIST: [3, 6, 9] CURRENT TRANSFORMED MATRIX: [[1, 4, 7], [2, 5, 8]] NEWLY TRANSFORMATION: [[1, 4, 7], [2, 5, 8], [3, 6, 9]] **********FINAL MATRIX TRANSPOSED: [[1, 4, 7], [2, 5, 8], [3, 6, 9]] ** Process exited - Return Code: 0 **