Skip to content

A brute force algorithm to try and encode a word into a sudoku.

Notifications You must be signed in to change notification settings

beauhobba/SudokuEncoder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

SudokuEncoder

A brute force algorithm to try and encode a word into a sudoku.

How it Works

When a user enters a sentence, eg "Hello", the sudoku encoder will try and convert this into a decoderable sudoku. Eg: H = 123, E = 456, L = 789, O = 132.

Thus:
1 2 3 4 5 6 7 8 9
7 8 9 1 3 2 x x x
x x x x x x x x x
...

The encoder creates many combinations for each letter based on its popularity. For example A can be 123, 782, 563 or 213; whilst Z might just be 943.

About

A brute force algorithm to try and encode a word into a sudoku.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages