package tools;
public interface StringDistance {
  public float getDistance(String s1,String s2);

}
