Skip to content
master
Switch branches/tags
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

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

Build status License

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
}

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages