Skip to content

Pattern Matching (similiay to fuzzy search) using Go

Notifications You must be signed in to change notification settings

sajjanjyothi/PatternMatch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

Please execute tests as
go test
Implemented MatchString in StringFinder struct as
type StringFinder struct {
	haystack string
	needle   string
}

Here I haven't used any algorithms readily available such as Boyer–Moore string search algorithm/Knuth–Morris–Pratt algorithm/
Rabin–Karp string search algorithm/Levenshtein distance

Implemented this algorithms specific to football club names

About

Pattern Matching (similiay to fuzzy search) using Go

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages