Sudoku Solver - Amazon Top Interview Questions


Problem Statement :


Sudoku is a puzzle where you're given a partially-filled 9 by 9 grid with digits. The objective is to fill the grid with the constraint that every row, column, and box (3 by 3 subgrid) must contain all of the digits from 1 to 9.

Implement an efficient sudoku solver that takes in an incomplete board and solves it. In the given board, the incomplete spaces will be 0.

Constraints

n = 9 where n is the number of rows and columns in matrix

Example 1

Input

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

Output

[
    [4, 2, 6, 5, 7, 1, 3, 9, 8],
    [8, 5, 7, 2, 9, 3, 1, 4, 6],
    [1, 3, 9, 4, 6, 8, 2, 7, 5],
    [9, 7, 1, 3, 8, 5, 6, 2, 4],
    [5, 4, 3, 7, 2, 6, 8, 1, 9],
    [6, 8, 2, 1, 4, 9, 7, 5, 3],
    [7, 9, 4, 6, 3, 2, 5, 8, 1],
    [2, 6, 5, 8, 1, 4, 9, 3, 7],
    [3, 1, 8, 9, 5, 7, 4, 6, 2]
]



Solution :



title-img




                        Solution in C++ :

bool isValid(vector<vector<int>>& matrix, int x, int y, int val) {
    for (int j = 0; j < 9; j++) {
        if (matrix[x][j] == val) return false;
    }

    for (int i = 0; i < 9; i++) {
        if (matrix[i][y] == val) return false;
    }

    int smi = x / 3 * 3;
    int smj = y / 3 * 3;

    for (int i = 0; i < 3; i++) {
        for (int j = 0; j < 3; j++) {
            if (matrix[smi + i][smj + j] == val) return false;
        }
    }

    return true;
}

bool solveSudoku(vector<vector<int>>& matrix, int i, int j) {
    if (i == 9) {
        return true;
    }

    int ni = 0, nj = 0;
    if (j == 8) {
        ni = i + 1;
        nj = 0;
    } else {
        ni = i;
        nj = j + 1;
    }

    if (matrix[i][j] != 0) {
        if (solveSudoku(matrix, ni, nj)) return true;
    } else {
        for (int po = 1; po <= 9; po++) {
            if (isValid(matrix, i, j, po)) {
                matrix[i][j] = po;
                if (solveSudoku(matrix, ni, nj)) return true;
                matrix[i][j] = 0;
            }
        }
    }

    return false;
}

vector<vector<int>> solve(vector<vector<int>>& matrix) {
    solveSudoku(matrix, 0, 0);
    return matrix;
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    public int[][] solve(int[][] matrix) {
        if (matrix == null || matrix.length == 0) {
            return matrix;
        }
        helper(matrix);
        return matrix;
    }
    public boolean helper(int[][] matrix) {
        for (int i = 0; i < matrix.length; i++) {
            for (int j = 0; j < matrix[0].length; j++) {
                if (matrix[i][j] == 0) {
                    for (int num = 1; num < 10; num++) {
                        if (isvalid(matrix, i, j, num)) {
                            matrix[i][j] = num;
                            if (helper(matrix))
                                return true;
                            else
                                matrix[i][j] = 0;
                        }
                    }
                    return false;
                }
            }
        }
        return true;
    }
    public boolean isvalid(int[][] matrix, int i, int j, int num) {
        // check column
        for (int row = 0; row < 9; row++) {
            if (matrix[row][j] == num)
                return false;
        }
        // check column
        for (int col = 0; col < 9; col++) {
            if (matrix[i][col] == num)
                return false;
        }
        // check borad
        for (int row = (i / 3) * 3; row < (i / 3) * 3 + 3; row++)
            for (int col = (j / 3) * 3; col < (j / 3) * 3 + 3; col++)
                if (matrix[row][col] == num)
                    return false;

        return true;
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, matrix):
        if not matrix or not matrix[0]:
            return

        self.solve_board(matrix)

        return matrix

    def solve_board(self, matrix) -> bool:
        for i in range(9):
            for j in range(9):
                if matrix[i][j] == 0:
                    # for every possible number value, try and see if it works
                    for k in range(1, 10):
                        if self.is_valid(matrix, i, j, k):
                            matrix[i][j] = k

                            if self.solve_board(matrix):
                                return True
                            else:
                                matrix[i][j] = 0

                    # we went through every number and nothing worked
                    return False

        return True

    def is_valid(self, matrix, row, col, value):
        box_row = (row // 3) * 3
        box_col = (col // 3) * 3

        # check row
        for i in range(9):
            if matrix[i][col] == value:
                return False

        # check col
        for i in range(9):
            if matrix[row][i] == value:
                return False

        # check box subgrid
        for i in range(9):
            resolved_row = box_row + (i % 3)
            resolved_col = box_col + (i // 3)

            if matrix[resolved_row][resolved_col] == value:
                return False

        return True
                    


View More Similar Problems

Fibonacci Numbers Tree

Shashank loves trees and math. He has a rooted tree, T , consisting of N nodes uniquely labeled with integers in the inclusive range [1 , N ]. The node labeled as 1 is the root node of tree , and each node in is associated with some positive integer value (all values are initially ). Let's define Fk as the Kth Fibonacci number. Shashank wants to perform 22 types of operations over his tree, T

View Solution →

Pair Sums

Given an array, we define its value to be the value obtained by following these instructions: Write down all pairs of numbers from this array. Compute the product of each pair. Find the sum of all the products. For example, for a given array, for a given array [7,2 ,-1 ,2 ] Note that ( 7 , 2 ) is listed twice, one for each occurrence of 2. Given an array of integers, find the largest v

View Solution →

Lazy White Falcon

White Falcon just solved the data structure problem below using heavy-light decomposition. Can you help her find a new solution that doesn't require implementing any fancy techniques? There are 2 types of query operations that can be performed on a tree: 1 u x: Assign x as the value of node u. 2 u v: Print the sum of the node values in the unique path from node u to node v. Given a tree wi

View Solution →

Ticket to Ride

Simon received the board game Ticket to Ride as a birthday present. After playing it with his friends, he decides to come up with a strategy for the game. There are n cities on the map and n - 1 road plans. Each road plan consists of the following: Two cities which can be directly connected by a road. The length of the proposed road. The entire road plan is designed in such a way that if o

View Solution →

Heavy Light White Falcon

Our lazy white falcon finally decided to learn heavy-light decomposition. Her teacher gave an assignment for her to practice this new technique. Please help her by solving this problem. You are given a tree with N nodes and each node's value is initially 0. The problem asks you to operate the following two types of queries: "1 u x" assign x to the value of the node . "2 u v" print the maxim

View Solution →

Number Game on a Tree

Andy and Lily love playing games with numbers and trees. Today they have a tree consisting of n nodes and n -1 edges. Each edge i has an integer weight, wi. Before the game starts, Andy chooses an unordered pair of distinct nodes, ( u , v ), and uses all the edge weights present on the unique path from node u to node v to construct a list of numbers. For example, in the diagram below, Andy

View Solution →