Brick Game in Java

If you’re a fan of classic arcade games, you’ve probably played Brick Game before. It’s a simple game that involves maneuvering a paddle to hit a ball that bounces around, trying to break through a wall of bricks. In this article, we’ll show you how to create your own Brick Game in Java with Source … Continue reading “Brick Game in Java”

Sudoku Solver (Applet) Java

Java Applet implementation of UI, to solve the sudoku Puzzle.

Java Applet implementation of UI, to solve the sudoku Puzzle.

Minesweeper In Java

Minesweeper is a classic video game created in 1990’s., The goal of this game is to find all the squares which dont have mines underneath.  The game is designed with the logic of each squares or cells have following rules. Each square may be any one of the following: Contains a Mine which will explode … Continue reading “Minesweeper In Java”

Sudoku Solver Java

Sudoku is an interesting game of filling numbers from 1 to 9 with the logic of non repeating filling of numbers., which improves our solving skills and increase our solving strategies. The following code is developed in Java to solve any Sudoku game., by following Sudoku rules and also by randomly trying numbers if there … Continue reading “Sudoku Solver Java”