Skip to content

Instantly share code, notes, and snippets.

@zidarsk8
Created May 19, 2013 19:36
Show Gist options
  • Save zidarsk8/5608705 to your computer and use it in GitHub Desktop.
Save zidarsk8/5608705 to your computer and use it in GitHub Desktop.
public class EditDistance {
/**
* @param args
*/
public static void main(String[] args) {
int[] a = LevenshteinDistance.getOperations("aa", "aac");
for (int i = 0; i < a.length; i++) {
System.out.println(a[i]);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment