11 lines
185 B
Go
11 lines
185 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/agext/levenshtein"
|
|
)
|
|
|
|
func main() {
|
|
score := levenshtein.Match("Vampire Hunter D (2000)", "Vampire Hunter D (2001)", nil)
|
|
fmt.Print(score)
|
|
} |