-11
votes
2answers
265 views
Python sudoku programming
I need your help on this. I have this program and I must finish it. It's missing 3 parts.
Here is the program I'm working with:
import copy
def display(A):
if A:
for …
-6
votes
0answers
155 views
Python sudoku programming..PLEASE HELP [closed]
how do u do it?
0
votes
1answer
47 views
Latin squares generator? (Sudoku-like constraint problem)
Purpose
We're designing a Latin square (sudoku-like sequence) for an experimental design that needs to follow these constraints:
Values cannot be repeated in a row
Values cannot …
1
vote
4answers
106 views
Sudoku table generator failure, lisp
Hello. I have a problem with some part of my lisp code. It is a sudoku table generator. It works fine until this part:
(loop for e in entries do
(if (and (not (member e s …
0
votes
4answers
256 views
Algorithm for solving Sudoku
I want to write a code in python to solve a sudoku puzzle. Do you guys have any idea about a good algorithm for this purpose. I read somewhere in net about a algorithm which solves …
1
vote
4answers
267 views
Optimizing the backtracking algorithm solving Sudoku
Hi,
I'm hoping to optimize my backtracking algorithm for my Sudoku Solver.
What it does now:
The recursive solver function takes a sudoku puzzle with various given values.
I …
8
votes
11answers
851 views
Multi-threaded algorithm for solving sudoku?
I have a homework assignment to write a multi-threaded sudoku solver, which finds all solutions to a given puzzle. I have previously written a very fast single-threaded backtracki …
0
votes
3answers
117 views
duplicacy problems while creating a sudoku puzzle
I am trying to create my own normal 9x9 sudoku puzzle.
I divided the problem into two parts -
creating a fully filled sudoku, and
removing unnecessary numbers from
the grid
R …
9
votes
19answers
2k views
A cool algorithm to check a Sudoku field?
Hi,
Does anyone know a simple algorithm to check if a Sudoku-Configuration is valid? The simplest algorithm I came up with is (for a board of size n) in Pseudocode
for each row
…
1
vote
3answers
192 views
Sudoku Solver by Backtracking question update
Assuming a two dimensional array holding a 9x9 sudoku grid, where is my solve function breaking down? I'm trying to solve this using a simple backtracking approach. Thanks!
bool s …
14
votes
7answers
30k views
Shortest Sudoku Solver in Python - How does it work?
I was playing around with my own Sudoku solver and was looking for some pointers to good and fast design when I came across this:
def r(a):i=a.find('0');~i or exit(a);[m
in[(i-j)% …
0
votes
6answers
265 views
Java Sudoku Gui
Hey stackoverflow.
I am currently writing a sudoku solver in java. What i need now is some kind of swing gui to input the already known numbers. I created a jframe but manually ad …
2
votes
3answers
222 views
Astar-like algorithm with unknown endstate
A-star is used to find the shortest path between a startnode and an endnode in a graph. What algorithm is used to solve something were the target state isn't specifically known and …
1
vote
6answers
885 views
Sudoku algorithm in C#
I need one liner (or close to it) that verifies that given array of 9 elements doesn't contain repeating numbers 1,2,3,...,9. Repeating zeroes do not count (they represent empty ce …
1
vote
9answers
844 views
Programming Design Help - How to Structure a Sudoku Solver program?
Hi,
I'm trying to create a sudoku solver program in Java (maybe Python).
I'm just wondering how I should go about structuring this...
Do I create a class and make each box a objec …
