Python/data_structures/arrays
Anubhavpandey27 09c2b2d006
Add arrays/sudoku_solver.py ()
* Create Sudoku_Solver

Each of the digits 1-9 must occur exactly once in each row.
Each of the digits 1-9 must occur exactly once in each column.
Each of the digits 1-9 must occur exactly once in each of the 9 3x3 sub-boxes of the grid.
The '.' character indicates empty cells.

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Rename Sudoku_Solver to sudoku_solver.py

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Update sudoku_solver.py

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Christian Clauss <cclauss@me.com>
2023-10-17 19:07:40 +02:00
..
equilibrium_index_in_array.py equilibrium index in an array () 2023-10-09 08:44:49 +13:00
find_triplets_with_0_sum.py add find triplets with 0 sum (3sum) () 2023-10-12 21:51:53 +02:00
median_two_array.py add median of two sorted array () 2023-10-04 20:18:59 +02:00
pairs_with_given_sum.py Count pairs with given sum () 2023-10-12 11:08:55 +02:00
permutations.py Fixed permute_recursive() by passing nums.copy(). Fixes () 2023-10-01 00:06:15 -04:00
prefix_sum.py add prefix sum () 2022-11-04 20:30:32 +13:00
product_sum.py Algorithm: Calculating Product Sum from a Special Array with Nested Structures () 2023-06-23 10:26:05 +02:00
sparse_table.py Added data_structures/arrays/sparse_table.py () 2023-10-15 22:13:27 +02:00
sudoku_solver.py Add arrays/sudoku_solver.py () 2023-10-17 19:07:40 +02:00