CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: DT31

Search: Search took 0.02 seconds.

  1. Replies
    8
    Views
    12,404

    Re: Last step in generating Sudoku Puzzles

    I drew this picture...I understand what I need to do...just writing it is the problem haha. Thanks for the tip thought it was nice to get some rest.
  2. Replies
    8
    Views
    12,404

    Re: Last step in generating Sudoku Puzzles

    I'm a bit confused as to how your code or hint fits into my code..I can't even think anymore, this program has me starting to hate Sudoku.


    Update: I still haven't gone to sleep and this STILL...
  3. Replies
    8
    Views
    12,404

    Re: Last step in generating Sudoku Puzzles

    I guess I'm just burnt out on Sudoku, this was the best I could do.




    for(int k = 0; k < 9; k++) {

    for( j = 0; j < j+3; j++ )
    {
    for(i=0; i< i+3; j++)
  4. Replies
    8
    Views
    12,404

    Re: Last step in generating Sudoku Puzzles

    Basically the objective is to fill a 9×9 grid so that each column, each row, and each of the nine 3×3 boxes (also called blocks or regions) contains the digits from 1 to 9 only one time each. The...
  5. Replies
    8
    Views
    12,404

    Last step in generating Sudoku Puzzles

    I have some code here that I need some help finishing. This code generates a random Sudoku Puzzle, problem is though that the one thing it is currently not checking for is having only one of each...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured