Sudoku Showcase
Variables
constants Namespace Reference

Variables

int N = 9
 global Constants The number of rows / columns in the grid More...
 
 BLOCK_SIZE = int(N / 3)
 
list ALLOWED_INDEX = [i for i in range(N)]
 
list ALLOWED_VALUES = [i for i in range(1, N + 1)]
 

Variable Documentation

◆ ALLOWED_INDEX

list constants.ALLOWED_INDEX = [i for i in range(N)]

◆ ALLOWED_VALUES

list constants.ALLOWED_VALUES = [i for i in range(1, N + 1)]

◆ BLOCK_SIZE

constants.BLOCK_SIZE = int(N / 3)

◆ N

int constants.N = 9

global Constants The number of rows / columns in the grid