Spiral Matrix - Amazon Top Interview Questions


Problem Statement :


Given a 2-d array matrix, return elements in spiral order starting from matrix[0][0].

Constraints

n, m ≤ 250 where n and m are the number of rows and columns in matrix

Example 1

Input

matrix = [
    [6, 9, 8],
    [1, 8, 0],
    [5, 1, 2],
    [8, 0, 3],
    [1, 6, 4],
    [8, 8, 10]
]


Output
[6, 9, 8, 0, 2, 3, 4, 10, 8, 8, 1, 8, 5, 1, 8, 1, 0, 6]



Solution :



title-img




                        Solution in C++ :

vector<int> solve(vector<vector<int>>& matrix) {
    vector<int> a;
    if (matrix.size() == 0) {
        return a;
    }

    int top, down, left, right;
    int direction = 0;

    top = 0;
    down = matrix.size() - 1;
    left = 0;
    right = matrix[0].size() - 1;

    while (left <= right && top <= down) {
        if (direction == 0) {
            for (int i = left; i <= right; i++) {
                a.push_back(matrix[top][i]);
            }
            top++;
        }

        else if (direction == 1) {
            for (int i = top; i <= down; i++) {
                a.push_back(matrix[i][right]);
            }
            right--;
        }

        else if (direction == 2) {
            for (int i = right; i >= left; i--) {
                a.push_back(matrix[down][i]);
            }
            down--;
        }

        else if (direction == 3) {
            for (int i = down; i >= top; i--) {
                a.push_back(matrix[i][left]);
            }
            left++;
        }

        direction = (direction + 1) % 4;
    }

    return a;
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    public int[] solve(int[][] matrix) {
        if (matrix.length == 0) {
            return new int[0];
        }
        int[] nums = new int[matrix.length * matrix[0].length];
        int startRow = 0, startCol = 0, endRow = matrix.length - 1, endCol = matrix[0].length - 1,
            k = 0;

        while (startRow <= endRow && startCol <= endCol) {
            for (int i = startCol; i <= endCol; i++) {
                nums[k] = matrix[startRow][i];
                k++;
            }
            startRow++;
            for (int i = startRow; i <= endRow; i++) {
                nums[k] = matrix[i][endCol];
                k++;
            }
            endCol--;
            if (startRow <= endRow) {
                for (int i = endCol; i >= startCol; i--) {
                    nums[k] = matrix[endRow][i];
                    k++;
                }
                endRow--;
            }
            if (startCol <= endCol) {
                for (int i = endRow; i >= startRow; i--) {
                    nums[k] = matrix[i][startCol];
                    k++;
                }
                startCol++;
            }
        }

        return nums;
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, matrix):
        mat = []
        if len(matrix) == 0:
            return mat
        a, b = len(matrix) - 1, len(matrix[0]) - 1
        c, d = 1, 0
        i, j = 0, 0
        while len(mat) < (len(matrix) * len(matrix[0])):
            # loop for top left to right
            while j <= b:
                mat.append(matrix[i][j])
                j += 1

            j -= 1
            i += 1
            # loop for rightmost top to bottom
            while i <= a:
                mat.append(matrix[i][j])
                i += 1

            i -= 1
            j -= 1
            # To check if no of row is odd we might traverse this in top left to right loop
            if i == (len(matrix) - 1) / 2:
                break
            # loop for bottom right to left
            while j >= d:
                mat.append(matrix[i][j])
                j -= 1

            j += 1
            i -= 1
            # To check if no of column is odd we might traverse this in rightmost top to bottom loop
            if j == (len(matrix[0]) - 1) / 2:
                break
            # loop for leftmost bottom to top
            while i >= c:
                mat.append(matrix[i][j])
                i -= 1

            i += 1
            j += 1
            a -= 1
            b -= 1
            c += 1
            d += 1

        return mat
                    


View More Similar Problems

Poisonous Plants

There are a number of plants in a garden. Each of the plants has been treated with some amount of pesticide. After each day, if any plant has more pesticide than the plant on its left, being weaker than the left one, it dies. You are given the initial values of the pesticide in each of the plants. Determine the number of days after which no plant dies, i.e. the time after which there is no plan

View Solution →

AND xor OR

Given an array of distinct elements. Let and be the smallest and the next smallest element in the interval where . . where , are the bitwise operators , and respectively. Your task is to find the maximum possible value of . Input Format First line contains integer N. Second line contains N integers, representing elements of the array A[] . Output Format Print the value

View Solution →

Waiter

You are a waiter at a party. There is a pile of numbered plates. Create an empty answers array. At each iteration, i, remove each plate from the top of the stack in order. Determine if the number on the plate is evenly divisible ith the prime number. If it is, stack it in pile Bi. Otherwise, stack it in stack Ai. Store the values Bi in from top to bottom in answers. In the next iteration, do the

View Solution →

Queue using Two Stacks

A queue is an abstract data type that maintains the order in which elements were added to it, allowing the oldest elements to be removed from the front and new elements to be added to the rear. This is called a First-In-First-Out (FIFO) data structure because the first element added to the queue (i.e., the one that has been waiting the longest) is always the first one to be removed. A basic que

View Solution →

Castle on the Grid

You are given a square grid with some cells open (.) and some blocked (X). Your playing piece can move along any row or column until it reaches the edge of the grid or a blocked cell. Given a grid, a start and a goal, determine the minmum number of moves to get to the goal. Function Description Complete the minimumMoves function in the editor. minimumMoves has the following parameter(s):

View Solution →

Down to Zero II

You are given Q queries. Each query consists of a single number N. You can perform any of the 2 operations N on in each move: 1: If we take 2 integers a and b where , N = a * b , then we can change N = max( a, b ) 2: Decrease the value of N by 1. Determine the minimum number of moves required to reduce the value of N to 0. Input Format The first line contains the integer Q.

View Solution →