From 3f6ba6e9dc081fc421057aa8b653a1fbb085a64b Mon Sep 17 00:00:00 2001 From: Sacha Ligthert Date: Mon, 27 Jan 2025 00:59:29 +0100 Subject: [PATCH] #12 Update README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 739a322..d3964f8 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,19 @@ _(This was a learning project to get a better grasp of Golang. But more importan I wrote [a blog post](https://blog.ligthert.net/posts/exploration-fun-and-process-cycles-of-sudoku/) about this. +## Features +* Worlds least efficient Sudoku solver +* Ability to assign a number of CPU cores to this task +* Split workloads among several computers + ## Usage To use the sudoku solver, run the binary with all the parameters available: ``` Usage of ./sudoku-funpark: + -numcpu int + Number of CPU cores to assign to this task. (default 12) + -part int + Process part x in n parts. Cannot be lower than 1, or higher than specified in split. (default 1) -row1 string 1st row of the sudoku puzzle. (default "000000000") -row2 string @@ -31,6 +40,8 @@ Usage of ./sudoku-funpark: 8th row of the sudoku puzzle. (default "000000000") -row9 string 9th row of the sudoku puzzle. (default "000000000") + -split int + Split the tasks in n parts. This depends on the availability of the first row. (default 1) ``` Instead of using the 3x3 blocks with 3x3 digits, it uses horizontal rows from top to bottom.