Tagged Questions

Sudoku (数独 sūdoku?, すうどく) English pronunciation: /suːˈdoʊkuː/ soo-doh-koo is a logic-based,combinatorial number-placement puzzle. The objective is to fill a 9×9 grid with digits so that each column, each row, and each of the nine 3×3 sub-grids that compose the grid (also called "boxes", "blocks", "regions", or "sub-squares") contains all of the digits from 1 to 9. The puzzle setter provides a partially completed grid, which typically has a unique solution.

learn more… | top users | synonyms

31
votes
4answers
48k 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 ...
17
votes
14answers
1k views

Code Golf: Validate Sudoku Grid

Introduction A valid Sudoku grid is filled with numbers 1 to 9, with no number occurring more than once in each sub-block of 9, row or column. Read this article for further details if you're ...
13
votes
5answers
438 views

Grade Sudoku difficulty level

I am building a Sudoku game for fun, written in Javascript. Everything works fine, board is generated completely with a single solution each time. My only problem is, and this is what's keeping me ...
13
votes
6answers
1k views

Building a GUI for a Sudoku Solver (Complete with ASCII Example)

. OVERVIEW, SAMPLE Hello everyone, I have created a basic Sudoku solver that can solve most problems fairly quickly. I still have a lot of work ahead of me to make it solve even the hardest ...
12
votes
4answers
544 views

How to re-use a thread in Java?

I am a building a console Sudoku Solver where the main objective is raw speed. I now have a ManagerThread that starts WorkerThreads to compute the neibhbors of each cell. So one WorkerThread is ...
12
votes
12answers
2k 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 backtracking sudoku solver, so ...
10
votes
6answers
834 views

Sudoku validity check algorithm - how does this code works?

I was reading a question posted here: Sudoku algorithm in C# And one of the solutions posted was this piece of code. public static bool IsValid(int[] values) { int flag = 0; foreach ...
9
votes
19answers
9k views

A cool algorithm to check a Sudoku field?

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 for each number k in ...
8
votes
6answers
445 views

How to generate Sudoku boards with unique solutions

How do you generate a Sudoku board with a unique solution? What I thought was to initialize a random board and then remove some numbers. But my question is how do I maintain the uniqueness of a ...
7
votes
7answers
5k views

Optimizing the backtracking algorithm solving Sudoku

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 will scour through all ...
6
votes
5answers
466 views

Sudoku backtracking algorithm

First of all, I'll state that this is a university assignment so I'm not asking for someone to write the code for me I just need to be pointed in the right direction. :) Ok, so I need to write an ...
5
votes
1answer
533 views

Solving Naked Triples in Sudoku

I wished I paid more attention to the math classes back in Uni. :) How do I implement this math formula for naked triples? Naked Triples Take three cells C = {c1, c2, c3} that share a unit U. Take ...
4
votes
2answers
125 views

C++: sudoku (copy board)

I'm new to c++ and got a problem when doing homework (sudoku). Instruction said: "you have to create a new board being a copy of the current board (use the copy constructor and allocate the board ...
4
votes
1answer
169 views

What's wrong with my sudoku solver function?

ok so i changed my function to a backtracking function (which i found online). It still reads from a file and inputs it in an array, the check function is working properly so i haven't changed that. ...
4
votes
2answers
1k views

Logic Solving Algorithm (for Sudoku in Java)

I'm having issues with my logic solving algorithm. It solves puzzles with a large number of hints very well, it just has issues with puzzles that have less than 45 clues. This is the algorithm for ...
4
votes
3answers
412 views

identify programming language

Please identify this programming language: *Main> [ ((a,b,c),(d,e)) | a <- [1..7], b <- [2..8], c <- [3..9], d <- [1..8], e <- [2..9], a < b, ...
4
votes
3answers
224 views

Creating sudoku initial boards

Is there an algorithm or way I can get initial state sudoku puzzles for a sudoku game. Preferably with the ability to have different levels of difficulty?
3
votes
2answers
380 views

prolog sudoku block algorithm?

how to get all elements of the blocks in prolog? the size can change dynamic in my code, so the blocksize differs, 4x4 = 4 elements, 9x9= 9 elements etc. the blocks are cut into squares, so in 4x4 the ...
3
votes
5answers
393 views

Simple Sudoku solving method

Note: this problem has been solved, the actual problem is NOT in this method but the other, so if you're searching for something about Sudoku and finally get into this page, you can ...
3
votes
2answers
692 views

Building an EFFICIENT Sudoku Solver

Yes, I know this is nothing new and there are many questions already out there (it even has its own tag), but I'd like to create a Sudoku Solver in Java solely for the purpose of training myself to ...
3
votes
3answers
586 views

Need to skip newline char (\n) from input file

I am reading in a file into an array. It is reading each char, the problem arises in that it also reads a newline in the text file. This is a sudoku board, here is my code for reading in the char: ...
3
votes
4answers
554 views

On Sudoku solving

Can someone please help me understand this solution.
3
votes
8answers
4k 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 cells). The best I ...
3
votes
6answers
798 views

Finding characters in a string that occur only once

I'm writing an algorithm in PHP to solve a given Sudoku puzzle. I've set up a somewhat object-oriented implementation with two classes: a Square class for each individual tile on the 9x9 board, and a ...
2
votes
3answers
542 views

Java Sudoku Generator(easiest solution)

In my last question seen here: Sudoku - Region testing I asked how to check the 3x3 regions and someone was able to give me a satisfactory answer (although it involved a LOT of tinkering to get it ...
2
votes
1answer
256 views

Need help with backtracking algorithm for generating Sudoku board

I have written an algorithm for generating a Sudoku board but it is failing. I have written it based on this though it does differ as I had written a lot of my code before I stumbled upon this. The ...
2
votes
1answer
121 views

prolog fill a list automatically with variables in loop

how to fill a list automatically with variables? like for(i=1;i<=9,i++){ addtoanylist(X_i); } so that the result is like L=[X1,X2,X3,X4,X5,X6,X7,X8,X9]. ? its because i want to build up ...
2
votes
1answer
182 views

sudoku game constructor

I am having trouble initializing a parameterless constructor with a defined game. Somehow it keeps on returning null if I use a getter method to return the game. Can anyone tell me what would be the ...
2
votes
2answers
238 views

Strategies for solving inequality sudoku?

A twist on the classic sudoku solver that I've recently run into is the (rather crazy) inequality sudoku, which is your classic sudoku puzzle with the added twist that there are inequality conditions ...
2
votes
3answers
317 views

How to show a sodoku solution is unique

Given a unsolved sodoku, how can one show that it has a unique solution?
2
votes
5answers
467 views

Proper data structure to represent a Sudoku puzzle?

What would be a smart data structure to use to represent a Sudoku puzzle? I.e. a 9X9 square where each "cell" contains either a number or a blank. Special considerations include: Ability to compare ...
2
votes
5answers
1k views

Brute force Algorithm for creation of Sudoku Board

What I am developing is that initially the entire sudoku board is empty. One of the random cells(out of 81) is filled with a random value(1-9). Now I want to fill all the remaining cells using ...
2
votes
3answers
790 views

Brute-force sudoku solver: backtracking?

An implementation of a brute-force algorithm to solve Sudoku puzzles fails if a cell is discovered in which placing any of the digits 1-9 would be an illegal move. The implementation is written in C, ...
2
votes
3answers
174 views

Comparing all values within a List against each other

I am a bit stuck here and can't think further. public struct CandidateDetail { public int CellX { get; set; } public int CellY { get; set; } public int CellId { get; set; ...
2
votes
1answer
140 views

functions not working the way they should in sudoku solver?

I'm trying to make a 4x4 sudoku solver in Python (I'm only a beginner!) and while trying to define a function to clean up my code somewhat, I ran across some strange behavior I don't really ...
2
votes
3answers
1k views

Random sudoku generation

I'm writing a function that should generate random sudoku puzzles for a simulation project; this funcion takes as argoument the number of cells to generate then it generates the indexes of cells and ...
2
votes
3answers
195 views

What kind of learning algorithm would you use to build a model of how long it takes a human to solve a given Sudoku situation?

I don't have much experience in machine learning, pattern recognition, data mining, etc. and in their underlying theory and systems. I would like to develop an artificial model of the time it takes a ...
2
votes
4answers
734 views

Writing Sudoku Solver wih Python

Here is my Sudoku Solver written in python language, When I run this program there seems to be a problem with in Update function and Solve function. No matter how much time I look over and move the ...
2
votes
4answers
444 views

Sudoku table generator failure, lisp

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 sub)) (not ...
2
votes
3answers
610 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 we instead only ...
2
votes
3answers
837 views

Smart Sudoku Golf

The point of this question is to create the shortest not abusively slow Sudoku solver. This is defined as: don't recurse when there are spots on the board which can only possibly be one digit. Here ...
1
vote
2answers
65 views

My Random Sudoku Generator Keeps Stalling

For a programming course of mine, I have decided to create a Sudoku board in GUI. I've created a class for just the code of the board, and whenever the slot that needs to be filled can't be filled ...
1
vote
2answers
47 views

Generation of sudoku questions

I am doing a sudoku game. My problem is the generation of sudoku questions. I want to generate questions in three difficulties. Is there any idea to generate 3 level questions?
1
vote
3answers
202 views

C# alternative to lock if volatile isn't a good idea

I'm sorry I know this topic has been done to death (I've read I've read this and this and a few more) but there is one issue I have which I am not sure how to do 'correctly'. Currently my code for a ...
1
vote
1answer
35 views

Javascript sudoku code hangs sometimes

I have a feeling that I'm in over my head. I'm trying to write a javascript sudoku game. Instead of posting all of my code, here's a link to my game. My source is here Right now, it just (attempts to) ...
1
vote
3answers
104 views

What is wrong with this char array code?

I'm new to C++, only been programming a few days so this might seem stupid, but can you spot why my arrays are not working correctly? This is the start of a program I'm designing that will solve ...
1
vote
2answers
134 views

Which data structure to represent Sudoku puzzle, and solve it by finding naked single / hidden single

I'm hesitate about which of following two data structure should be use to represent a sudoku board, in order to solve it by using naked single and hidden single technique. 1. //using bool array to ...
1
vote
2answers
101 views

Getting StackOverflow Error

I'm trying to write a program that takes a Sudoku puzzle and solves it. However, I'm running into a StackOverflow error at this line: Move nMove = new Move(current.nextMove(current, sboard).i, ...
1
vote
1answer
177 views

Is there any algorithm that can solve ANY traditional sudoku puzzles, WITHOUT guessing (or similar techniques)?

Is there any algorithm that solves ANY traditional sudoku puzzle, WITHOUT guessing? Here Guessing means trying an candidate and see how far it goes, if a contradiction is found with the guess, ...
1
vote
3answers
101 views

Understand the R class in Android

In android/Java, I'm not sure I quite understand the R class. I'm going through the sudoku example, and I have this snipet of code: switch (v.getId()) // the id of the argument passed is is ...

1 2