Skip to content

teeheehee/WordGames

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WordGames

This repository is an exploration of simple word games and puzzles using the most recent .NET stack.

WordSearch

A C# library for generating a Word Search puzzle. Example usage can be found in the paired command line application project WordSearchCmd.

The IEnumerable of string values used to instantiate the Solver gets normalized as UPPERCASED and with spaces removed. Generating the word search puzzle is done by constructing multiple compositions, each with randomized settings to try and place the words on the grid.

By default a WordBoard is constructed matching the maximum string size of the normalized strings. Board size and other behavior can be controlled by using an alternate WordSearchSolver constructor.

WordSearchCmd

A C# command line application that generates a Word Search puzzle from a simple text file of words terms.

Acknowledgements

Inspiration for the WordSearch algorithm and structure was heavily pulled from this solution.

The ToJaggedArray extension method for converting T[,] to T[][] came from this Stack Overflow response.

About

Word games and puzzles in .NET

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages