SudokuAssistant 0.2.0-alpha

This is a prerelease version of SudokuAssistant.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package SudokuAssistant --version 0.2.0-alpha
NuGet\Install-Package SudokuAssistant -Version 0.2.0-alpha
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SudokuAssistant" Version="0.2.0-alpha" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SudokuAssistant --version 0.2.0-alpha
#r "nuget: SudokuAssistant, 0.2.0-alpha"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SudokuAssistant as a Cake Addin
#addin nuget:?package=SudokuAssistant&version=0.2.0-alpha&prerelease

// Install SudokuAssistant as a Cake Tool
#tool nuget:?package=SudokuAssistant&version=0.2.0-alpha&prerelease

Sudoku Assistant

Modular system for working with different sudoku puzzles.

Features

Sudoku generation

Use the SudokuAlgorithms.GenerateSudoku() method to create a random 9x9 sudoku puzzle.

Example:

using SudokuAssistant;

string sudoku = SudokuAlgorithms.GenerateSudoku(); // Creates a new sudoku puzzle
Console.WriteLine(sudoku); // Write it to the console

// OUTPUT:
// 5..3...8...2.85964814.6935.14.593.28.258..49.98324...52719.8.46..86.72..369452.71

Solving sudoku

Use the SudokuAlgorithms.SolveSudoku(string sudoku) method to solve a sudoku puzzle.

Example:

using SudokuAssistant;

string sudoku = "5..3...8...2.85964814.6935.14.593.28.258..49.98324...52719.8.46..86.72..369452.71";
string solveSudoku = SudokuAlgorithms.SolveSudoku(sudoku);

// OUTPUT:
// 596324187732185964814769352147593628625871493983246715271938546458617239369452871

To try out yourself, please use the above example

Support

If you like the project, please consider supporting my work by sponsoring the repo and giving it a ⭐ star. Thank you ❤️!

Opportunities for support:

Name Link
Github Sponsors https://github.com/sponsors/LaszloMocsy
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net7.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated