import java.util.*;

public class Solution {
    public ArrayList<Integer> spiralOrder(int[][] matrix) {
        ArrayList<Integer> arr = new ArrayList<Integer>();
        if(matrix.length == 0) return arr;
        int top = 0;
        int left = 0;
        int right = matrix[0].length - 1;
        int bottom = matrix.length - 1;
        while(left <= right && top <= bottom){
            for(int col = left; col <= right; col++){
                arr.add(matrix[top][col]);
            }
            top++;
            for(int row = top; row <= bottom; row++){
                arr.add(matrix[row][right]);
            }
            right--;
            if(left <= right && top <= bottom){
                for(int col = right; col >= left; col--){
                    arr.add(matrix[bottom][col]);
                }
                bottom--;
                for(int row = bottom; row >= top; row--){
                    arr.add(matrix[row][left]);
                }
                left++;
            }



        }

        return arr;
    }
}