* Copyright (C) 2022 Dhinesh Sornakili. All rights reserved.
* https://github.com/disoki/sudoku.git
*
* Project : Sudoku Problem Solving with OOPS / Java
* Version : 1.0
*
* Author : Dhinesh Sornakili
* Created : 15.01.2022
This project aims that the program solves the Sudoku puzzle enter by the user. The problem solving approach will be carried with the Object Oriented design. The goal is to understand the OOPS design process and the concepts of it.
There are three packages
- com.disoki.sudoku : main method class to run the application
- com.disoki.sudoku.basic.objects : Java classes/ objects with basic design
- com.disoki.sudoku.oops.objects : Java classes covering few OOPS concepts like Abstraction, Polymorphism, Overloading, Overriding, Inheritance
The same solution is programmed in two different class design in both packages where basic.objects contains classes as individual entity. oops.objects contains same classes used parent class and incorporated with the the concepts like Inheritance, Encapsulation, Abstraction and Polymorphism(Overloading, Overriding)
- Compile and run the Game.java or GameOOPS.java(package - com.disoki.sudoku)
- Change the variable in main class String[] inputList with new puzzle and run to get result
Email to [email protected] if you have any queries, clarifications regarding this application