Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 403 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 403 Bytes

SwipeType - Implementing same algorithm "swype keyboard" for .NET and Unity

Example

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
}

Licensed under the Apache-2.0 License