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

Search:

Type: Posts; User: Fafnir_42

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    1,106

    Re: SudokuSolver does not solve

    Okay, you are right, I am sorry.
    If anyone is interested in the problem, here it is:

    if (gameField[actCol][actRow]==0)

    should be:

    if (gameField[actRow][actCol]==0)
  2. Replies
    4
    Views
    1,106

    Re: SudokuSolver does not solve

    I finally found my mistake. After that, I optimized the code a little bit and changed the Solve() Function


    #include <iostream>

    typedef unsigned short ushort;

    using std::cout;
    using...
  3. Replies
    4
    Views
    1,106

    SudokuSolver does not solve

    Hi guys,

    I'm coding a Sudoku Solver but it isn't finished yet. However, I've tried to run it just to see, if it works for an empty Sudoku.


    #include <iostream>

    typedef unsigned short...
  4. Coding a rogue-like game for practicing c++

    Hey guys,

    A few days ago I started coding in C++ so I've created an own task for me: Coding a rogue-like game.
    Today I created a square where you can walk in:



    #include <cstdio>
    #include...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured