Sudoku Generator in Java

Sudoku  is a logic based, combinatorial  number-placement puzzle [wikipedia]. I just created a sudoku number generator in java console.You can also use this method for generating sudoku numbers easily in GUI. I used a easy approach for generating sudoku numbers.I use this project mainly for making a simple generator.This is working fine.Voila!

Check it on https://ideone.com/rbHDGh.… Read more

Gradle from Maven Dependency

Here is the easy part.I got this Github Project and need to use it for Android Project.Easily make gradle from Maven Dependency.Next is the example part.

 Maven

<dependency>
    <groupId>org.roboguice</groupId>
    <artifactId>roboguice</artifactId>
    <version>2.0</version>
</dependency>

Gradle

dependencies {
compile 'org.roboguice:roboguice:2.0'
}
What is Gradle ?

Learn it from this stackoverflowRead more

AI based Tic Tac Toe in Java

minimax

This is a simple Minimax Algorithm based Tic Tac Toe in Java Console. I developed this as a hobby project and there is also some bugs.So,this is not a 100% completed project,but you can learn easily from the code.There are many tic tac toe codes available and this is a different approach.

 Introduction

There are 3 java files:

  1. tikitaka.java
  2. bordmaker.java
Read more