All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sd_example.SdJavaExample Maven / Gradle / Ivy

The newest version!
package sd_example;

import com.github.vickumar1981.stringdistance.util.ArrayDistance;

public class SdJavaExample {
    public static void main(String[] args) {
        Double levenshtein = ArrayDistance.levenshtein(
            new Ch[]{Ch.of('m'), Ch.of('a'), Ch.of('r'), Ch.of('t'), Ch.of('h'), Ch.of('a')},
            new Ch[]{Ch.of('m'), Ch.of('a'), Ch.of('r'), Ch.of('h'), Ch.of('t'), Ch.of('a')}
        );
        System.out.println("result: " + levenshtein);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy