Calculate Jaro similarity of two sequences, where 1 is an exact match
and 0 is no similarity.
Sj = 1/3 * ((m / |A|) + (m / |B|) + ((m - t) / m))
Where m is #matches and t is #transposes
Jaro.distance("information", "informant")
# => 0.9023569023569024