Skip to content

Attempts to link two words by changing one char at a time on each word to obtain another word.

Notifications You must be signed in to change notification settings

adamashton/WordLink

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

WordLink

Attempts to link two words by changing one char at a time on each word to obtain another word.

Usage

WordLink wl = new WordLink(@"wordlist.txt", true);
List<string> result = wl.Find("beer", "wine");
if (result != null)
	Console.WriteLine(string.Join(",", result));
else
	Console.WriteLine("Could not find link between words.");

Output

beer, deer, dee, die, dine, wine

About

Attempts to link two words by changing one char at a time on each word to obtain another word.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages