Sudoku Solver in Java
This is a Sudoku solver that uses arc consistency and domain splitting. Also able to tell if a board has no or many solutions.
This is a Sudoku solver that uses arc consistency and domain splitting. Also able to tell if a board has no or many solutions.
After some fiddling with XCode and C++, I finally got it compiling my Hello World. To my pleasure, the syntax in C++ is somewhat similar with Java, but there are still many differences.
In Java, to start a class we use:
public class fileName
{
}
In a command line C++ program, the following lines are needed:
#include <iostream>
using namespace std;
iostream [...]
July 26, 2008 - 9:34 pm
Tags: Java, Programming
Posted in Java | 4 comments
Here is a quick Java application I whipped up. Quizzicle is a command line application that generates random math equations. You can choose an arithmetic operation, the number of questions, the number of digits in the question, and if negative numbers or zeros are allowed. Javadoc included.
Update 1.1:
Adds a Timer
Adds Logging (writing to a file)
Various [...]
July 15, 2008 - 8:59 pm
Tags: eclipse, Java, Programming
Posted in Java, Windows | No comments
This guide will show beginner programmers how to set up and install JDK and the Eclipse IDE. I will be installing JDK 6 Update 7 and Eclipse 3.4.0 Ganymede.
Get JDK
Mac Users: Skip this as you already have JDK. Do a system update to check if you have latest one.
You will need to install JDK first [...]
