Go implementation of Dice coefficient to find similarity between two strings.
go get github.com/FR0ST1N/strdice
package main
import (
"fmt"
"github.com/FR0ST1N/strdice"
)
func main() {
fmt.Print(strdice.Compute("mouse", "mouse trap")) // 0.66
}