0 purchases
sudokuer
sudokuer #
A Dart library containing tools related to Sudoku puzzles.
Getting started #
import 'package:sudokuer/sudokuer.dart' as s;
copied to clipboard
Usage #
Generator
// difficultyLevel: Solution Grid - 0, Beginner - 1, Easy - 2, Medium - 3, Hard - 4
s.generator(difficultyLevel: 2);
copied to clipboard
Solver
final list = s.toSudokuList(board);
s.solver(list);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.