Returns true if a and b have the same Soundex code. Audited: 2026-06-12 11:26 EDT
a
b
static bool soundsLike(String a, String b) => encode(a) == encode(b);