Package boardGenerator

Examples of boardGenerator.GameDifficultyLevel


    public static void main(String[] args) {
        int[][] board;
        int[][] solution;
        int numberCount;
        SudokuModelo model;
        GameDifficultyLevel diff = GameDifficultyLevel.HARD;
              
        /*Llamada usando el generador 1*/
        System.out.println("SudokuGenerator 1");
        /*Inicializo el generador*/
        model = new SudokuModelo(SudokuModelo.Model1,diff);
View Full Code Here

TOP

Related Classes of boardGenerator.GameDifficultyLevel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.