Git Product home page Git Product logo

backtracking-sudoku-solver's Introduction

Backtracking Sudoku Solver

image

Cpp

STEP Wise Algorithm :

STEP 1 : Find a block that has no predefined number.

STEP 2 : Return a positive boolean result if all blocks are filled.

STEP 3 : Run a loop running ‘$order_of_matrix’ times

STEP 4a: Assign a digit, that is not already assigned in the row or column or the respective sub-domain, to the block.

STEP 4b: If the digit cannot be filled in the block, the subtree is nullified and the possibility is removed.

STEP 4c: Move on to the next iteration.

STEP 4d: This process is repeated till the criteria of “STEP 2” is fulfilled.

STEP 5 : Return a negative boolean result if none of the digits can be placed in a block(which breaks out of the backtracking algorithm).

backtracking-sudoku-solver's People

Contributors

bharathsanikommu1404 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.