
com.github.vickumar1981.stringdistance.impl.DiceCoefficientImpl.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stringdistance_2.12 Show documentation
Show all versions of stringdistance_2.12 Show documentation
A fuzzy matching string distance library for Scala and Java.
The newest version!
package com.github.vickumar1981.stringdistance.impl
private[stringdistance] trait DiceCoefficientImpl {
protected def diceCoefficient[T](s1: Array[T], s2: Array[T]): Double = {
val nx = s1.zip(s1.tail).toSet
val ny = s2.zip(s2.tail).toSet
val intersection = nx intersect ny
2.0 * intersection.size / (nx.size + ny.size)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy