var swype = new MatchSwipeType(File.ReadAllLines("wordlist.txt")); // File with a list of words
string testCases = "heqerqllo";
foreach (var x in swype.GetSuggestion(testCases, 2))
{
Console.WriteLine(x);
//Output:
//hello
//hero
}
var swype = new MatchSwipeType(File.ReadAllLines("wordlist.txt")); // File with a list of words
string testCases = "heqerqllo";
foreach (var x in swype.GetSuggestion(testCases, 2))
{
Console.WriteLine(x);
//Output:
//hello
//hero
}