C# Class AdvancedAlgorithms.WheresWaldorf

Wheres Waldorf homework problem - Rod Howarth n6294685
Datei anzeigen Open project: RodH257/Advanced-Algorithm-Problems

Private Methods

Method Description
CheckLine ( char grid, int lineInSearch, int positionInSearch, int lineModifier, int positionModifier, int foundCharacters, string wordToFind ) : bool

Recursively checks a line in a certain direction

FindTextInGrid ( string wordToFind, char grid ) : string

Finds the specificed in the grid can be vertical, horizontal, diagonals, backwards or forwards

FindWordStartingFromCharacter ( int lineInSearch, int positionInSearch, char grid, int foundCharacters, string wordToFind ) : bool

After finding the first character, continues on

Main ( string args ) : void