single_channel(email_ids, sms_ids) that returns how many customer IDs were reached by exactly one of the two channels.single_channel([1, 2, 3], [3, 4])
3
IDs 1, 2 (email only) and 4 (SMS only); 3 got both so it is excluded.
Symmetric difference gives elements in exactly one set.
len() of that result.