- #1
physicsfun
- 11
- 0
Homework Statement
Write code to rotate an array...
Homework Equations
why is this code not rotating my array 90 degrees to the left? thanks SO much in advance!
The Attempt at a Solution
public static int[][] rotateLeft(int[][] source) {
int[][] result = new int[source.length][source[0].length];
for (int i = 0; i < result.length; i++) {
for (int k = 0; k < result[0].length; k++) {
result[k] = source[source.length-1-i];}}
return result;}