static ReplaceSuffix ai_suffixChange(S a, S b) { int common = lCommonPrefixIC(a, b); ret common == 0 ? null : ReplaceSuffix(dropFirst(a, common), dropFirst(b, common)); }