Search:

Type: Posts; User: cbeberge

Search: Search took 0.56 seconds.

  1. Replies
    5
    Views
    1,827

    Re: Brute force Sudoku algorithm is not working

    I´m pretty sure that legalValue(int value) works, under is the code for the function:


    boolean legalValue(int value) {
    if(row.legalValue(value) && columne.legalValue(value) &&...
  2. Replies
    5
    Views
    1,827

    Re: Brute force Sudoku algorithm is not working

    The task is to make a brute force algorithm. Sorry, but this with original board was just something that I test and forgot to remove, her is the algorithm the way should bee in the first post.

    ...
  3. Replies
    5
    Views
    1,827

    Brute force Sudoku algorithm is not working

    Hi

    I have squeezed my brain for 2 days now to find the bug that bugs with my code. Iam trying to develop a brute force sudoku solver, but the sudoku algorithm wont work. Please give me some help,...
Results 1 to 3 of 3