Sudoku

Sudoku Game using Tkinter in Python Free Source Code

Submitted by razormist on
Sudoku Game using Tkinter in Python Free Source Code - This is a simple game that uses the Tkinter library to recreate the Sudoku game as a Python application. This project is a logic-based mathematical program where you need to solve the missing numbers in the grid to match the corresponding columns and rows. Python Free Source Code.

Microsoft Foundation Classes: creating a Sudoku game. Part 2.

Submitted by pavel7_7_7 on
It's the second part of the article about creating a Sudoku game using MFC. In this part you will read about how to create GUI for this game. The MFC applications are closely connected to the document-view architecture. When you create a project two classes are created: document class and view class. The document class contains the data used in your application.

Microsoft Foundation Classes: creating a Sudoku game. Part 1.

Submitted by pavel7_7_7 on
In this article you will read about the rules of the Sudoku game and the algorithm, used to solve the Sudoku puzzle. In the next two articles I'll describe the complete step by step guide about how to implement a Sudoku puzzle game using MFC. The goal of the Sudoku game is to fill the 9x9 grid with numbers from 1 to 9 in the next way:
  • Each row contains all numbers from 1 to 9
  • Each column contains all numbers from 1 to 9
  • Each block of 3x3 cells contains all numbers from 1 to 9
Here is an example of the solved Sudoku: