Returns true if a and b have the same Soundex code.
a
b
static bool soundsLike(String a, String b) => encode(a) == encode(b);