Sudoku (soo-doh-koo) is a number-placement logic 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 contains all of the digits from 1 to 9.

learn more… | top users | synonyms

-2
votes
1answer
29 views

Generating a puzzle from a complete Sudoku [closed]

I have a randomly-generated (correct) Sudoku, with all 81 numbers, and I want to convert it into a puzzle, so remove some (which?) numbers. Is there an algorithm for this? I would prefer a function ...
0
votes
1answer
32 views

changing 2 random numbers in 30 times in sudoku table using java script

In this code each time you open the html page two random numbers are generated and thier location in the matrix will be changed. for example the random numbers are 2,8 in the main table 2 is in the ...
1
vote
2answers
42 views

Recognizing and converting ternary operator to correct if statement

I'm trying to figure out the below code and I'm having trouble with the ternary operator below. System.out.print(solution[i][j] == 0 ? " " : ...
-1
votes
1answer
71 views

Sudoku Solver algorithm for int[,]

Good day to all, I've been working on a C# Sudoku Solver application but I sincerely underestimated the difficulty of the algorithms to solve a sudoku. I've been searching the web for possible ...
1
vote
1answer
26 views

Java - JFormattedTextField does not allow input on first attempt

I am making a little Sudoku game with a GUI and use a MaskFormatter for the JFormattedTextFields: formatter = new MaskFormatter(s); formatter.setValidCharacters("123456789"); But my problem is ...
1
vote
1answer
32 views

Trying to build Sudoku board in Java Swing. NullPointerException error?

I am working on building the GUI for a java program that will generate and solve sudoku puzzles. The way I am doing it is have 1 main jpanel, with 3x3 jpanels inside it, which have 3x3 jlabels in ...
0
votes
2answers
103 views

Counting the number of solutions for a given sudoku puzzle?

I'm developing a web based sudoku game that allows the user to custom made his own sudoku board. I need a way of telling the user the number of possible solutions that the board he assembled has. The ...
1
vote
0answers
29 views

sudoku parallelization with MPI

I want to parallelize my sudoku solver program with MPI. The current serial code relies on backtracking with depth-first search. I did some research, but I am still not sure how to do it. Some say ...
2
votes
2answers
60 views

How do I fix my Python sudoku solver bug? [closed]

THIS IS FROM MY HOMEWORK Hello. I had to make a python sudoku solver and this is what I came up with. http://pastebin.com/JRKaqSed (includes my input and the output I get) However, when I run it, ...
-3
votes
1answer
78 views

Simple sudoku puzzle solver python [closed]

I'm trying to write a simple sudoku solver in python. The basic concept is that the sudoku puzzle is partially filled in and the unsolved cells are indicated by zeros. Any cell denoted by a zero can ...
-1
votes
3answers
72 views

Application Sudoku has stopped unexpectedly

I am creating my first app using Hello Android 3rd edition as a guide.The second chapter is a tutorial about making sudoku app.when i run the same code from the book,it gives error "Application ...
2
votes
1answer
41 views

Prolog returning false for sudoku solver

:-use_module(library(clpfd)). solve(X,Board):- Board=X, Board = [A1,A2,A3,A4,A5,A6,A7,A8,A9, B1,B2,B3,B4,B5,B6,B7,B8,B9, C1,C2,C3,C4,C5,C6,C7,C8,C9, ...
0
votes
2answers
36 views

toplevel: Undefined procedure Prolog

sudoku(X,Board):- Board=X, Board = [A1,A2,A3,A4,A5,A6,A7,A8,A9, B1,B2,B3,B4,B5,B6,B7,B8,B9, C1,C2,C3,C4,C5,C6,C7,C8,C9, D1,D2,D3,D4,D5,D6,D7,D8,D9, E1,E2,E3,E4,E5,E6,E7,E8,E9, ...
1
vote
1answer
56 views

How to arrange numbers in Label into grid in Tkinter?

I create a sudoku solver and I want to show candidates for each cell. Sudoku grid is list of Label widgets and I have a problem with arranging these candidates into grid. My goal is something like ...
0
votes
1answer
46 views

c++ how to pass two arrays to a function and return them both?

I have two arrays: int sudoku[9][9]; bool possiblevalues[81][9]; I want to initialize them both. I pass them to a function initialize (sudoku, possiblevalues). This one initializes the ...
0
votes
0answers
30 views

Allow User To Input Data For A Sudoku Solving Program?

I am currently trying to allow the user to input values into a Sudoku solver however I keep getting an error. Here is the code: #include <iostream> // #include <fstream> using ...
1
vote
1answer
66 views

Sudoku solver Recurrence stack with try and fail technique

I am building a Sudoku solver that use the Try and Fail technique to solve any problem. My algorithm is: 1)Update (method that remove any possible value that already given as a final value to element ...
0
votes
0answers
55 views

Thick line between labels (C#)

I want to make a sudoku field of labels, for which I have the code. Now I want thick lines between some labels so you can see which block of labels are together. This code makes the labels: const ...
-2
votes
3answers
52 views

c++. solution doesn't match my expectations [closed]

I wrote this code to a sudoku solver. I started with controlling one row. bool checkrow(int sudoku[9][9], int indexcolumn, int indexrow) { for (int counter = 0; counter <= 8; ...
0
votes
1answer
41 views

How to generate numbers in this sudoku board c++

I'm making a sudoku puzzle. I have the board done. But the problem is I'm really confused about how to generate numbers in this box. Because it's an array of Char. But I want to generate integers. ...
0
votes
0answers
73 views

sudoku backtracking-My code don't work

I am new in this web and I wanted to ask u help with a sudoku problem.. I don't understand because my sudoku work sometimes and it cannot resolve all sudokus that read in file. In this case to read my ...
0
votes
4answers
67 views

Sudoku Block Checker Java [closed]

I'm building a Sudoku checker and I've made a row checker and a column checker. I'm currently trying to make a block checker (3x3 block). Any insight on this would be great. public boolean checkBlock ...
-2
votes
1answer
154 views

Sudoku Checker Java [closed]

I have a question about a problem I'm having with a code i am writing. I need to create a Sudoku board checker. The goal is to extend the Sudoku class (to make the CheckableSudoku class) by using the ...
0
votes
1answer
53 views

Sudoku algorithm with backtracking does not return any solution

i'm a bit stuck with the Sudoku algorithm, i coded it using backtrack, and following the theorical steps this should work, and i tried to debuge it, but is too hard (and yes, it solve some numbers and ...
0
votes
1answer
24 views

Building and populating gui grids in C++

Working with GUIs. I appreciate that a lot of people ask after how to get started with Windows GUIs. I've written a C++ sudoku solver as a command line piece of code (happy to share if anyone would ...
0
votes
2answers
39 views

One number appears only once?

So I've been trying to write a function for which will generate numbers for a sudoku puzzle. this is what it looks like I'm kind of lost at the very last line... How can i check if one number only ...
0
votes
1answer
90 views

In search of some guidance regarding HashMap

I'm making a Sudoku Solver program in Java, which uses backtracking and bruteforce for the solving algorithm. The problem I seem to be having is that when I insert the correct values in a simple ...
1
vote
2answers
73 views

Sudoku infinite loop using stacks

I'm new and have not coded C++ in well over five years. I have a project in a class about a sudoku solver. It works (for the most part) except when it backtracks (when it can't find a single possible ...
0
votes
1answer
75 views

Issues with recursive backtracking

I am trying to implement a backtracking algorithm in Java, to solve a sudoku problem. I'm 95% sure the problem is in solve method, but I included the two accesory methods in case. Some of the ...
-1
votes
1answer
350 views

Sudoku Solver brute force algorithm

Still working on my sudoku solver, I have once again run into some trouble. I have gotten the sudoku solver to work, however whenever I attempt to solve a really "hard" sudoku board, my solver tells ...
0
votes
0answers
135 views

sudoku solver with recursive backtracking not working as intended (Fixed!)

I'm making a sudoku program with a solver that uses a recursive backtracking algorithm, and a single-solution sudoku generator as a project for an online CS class I'm taking. However, the solver seems ...
0
votes
2answers
55 views

Checking whether list in a dictionary is the same as another list?

I'm trying to make a Sudoku solver, and at the moment I'm making the part which checks if it has been solved, but I've got abit stuck. The grid is made of a list of 81 numbers (9*9), and then I have ...
1
vote
3answers
124 views

Draw tick border around group of cells (TableLayoutPanel C#)

I'm making a sudoku field in a windows form application (c#) I've used a TableLayout to make my boxes to put labels in for the numbers displayed in the sudoku, now I need a thick border around every ...
3
votes
0answers
76 views

Maximum number of clues in a Sudoku game that does not produce a unique solution [closed]

You may have heard that last year it was proven that the smallest number of starting clues for a Sudoku game, guaranteeing a unique solution, is 17. An example is shown below. I am interested in ...
5
votes
4answers
266 views

How to Generate a -complete- sudoku board? algorithm error

I'm trying to generate a complete (ie, each cell filled with a number) Sudoku-like board. It's for something else that has nothing to do with sudokus, so I am not interested in reaching a sudoku with ...
0
votes
1answer
388 views

C# Sudoku Puzzle

Hi All I'm trying to create a sudoku puzzle using classes, arrays, and for loops. Pretty much wanting to generate the puzzle from the code behind aspx. The problem that I'm running into is how to ...
0
votes
1answer
142 views

Draw rectangle on touch in iOS subview

I'm trying to port a Sudoku app that I created in Cocoa over to iOS, and I'm having trouble translating the mouseDown events that I had in the Mac app into touchBegan events on iOS. I have a subview ...
0
votes
0answers
50 views

Loops causing JComboBoxes to not be referenced

I'm working on a Java code that solves a Sudoku puzzle. The logic has not been implemented yet, but I have run into a problem with using loops to create my JComboBoxes. My code compiles and runs ...
6
votes
1answer
243 views

Sudoku solve method

I've a problem with my sudoku solving method. The program works like this; the board is empty when started, the users adds a couple of numbers to the board and then by hitting a Solve-button the ...
3
votes
1answer
57 views

Reaching JTextField in a DocumentListener

So, I finished making a Sudoku solver but I want to improve it. To do this I somehow need to reach my betterJTextField from the documentListener. I'm using a documentListener to read in real-time from ...
0
votes
2answers
97 views

Removing try/catch exception

I'm working on a sudoku solver and the solve-method gives an error which I've temporarily "solved" with a try and catch exception. However, I'm a little concerned that I'm blanket catching an ...
1
vote
5answers
182 views

Sudoku solver, special case solving

I'm working on a sudoku solver with recursive backtracking which is pretty much finished except for one thing. If I would put duplicates somewhere within the puzzle (For example 1,1 in the top corner) ...
0
votes
1answer
120 views

Recursive Sudoku runtime

I've been having a problem with the runtime of a brute force Sudoku solver that utilizes recursion. It's technically our introduction to the concept, so brute force is what's required using a ...
0
votes
1answer
281 views

How to get all possible solutions using backtracking algorithm?

I'm using the backtracking algorithm described in this youtube video. Now, I should be able to get ALL possible solutions. Am I able to do this with the backtracking algoritme and how? If not ...
1
vote
1answer
160 views

Sudoku Grid; What control should I use best?

I need to create a Sudoku grid using Windows forms. I'm using C#. Requirements: The Sudoku grid is based on a 2 dimensional array. This array is fixed when set, but the sides can be variable; 4x4, ...
0
votes
3answers
53 views

StackOverflow after 27 runs

When running my Sudoku Generator, after 27 times getting stack overflow. void start(int todel){ int number; for (int x=0; x<9; x++) { for (int y=0; y<9; y++) { number = GenN(x, y); ...
-3
votes
2answers
277 views

Fastest Sudoku Algorithm [closed]

Simple question: what is the fastest algorithm to create a fully completed sudoku from scratch (i.e. all 81 cells filled)?Algorithms I've seen include: Backtracking Exact Cover Brute Force But ...
2
votes
0answers
82 views

creating a more complex sudoku (69x6) [closed]

I would like to know if its possible to create a "sodoku" with this rule: in a table 69x6 i want to put in the numbers from 1 to 46 repeated 9 times, each numbers HAS to stay in the same colum with ...
1
vote
3answers
484 views

Recursive method for solving sudoku

I'm currently studying my second programming course in java and have a problem with an assignment that I need to complete to pass the course. Basically it's about writing a program that recursively ...
0
votes
1answer
217 views

Algorithm Complexity (Big-O) of sudoku solver

I'm look for the "how do you find it" because I have no idea how to approach finding the algorithm complexity of my program. I wrote a sudoku solver using java, without efficiency in mind (I wanted ...

1 2 3 4 5 6