sbool randomlyChooseFirstList(Collection a, Collection b) { if (empty(b)) true; if (empty(a)) false; ret random(l(a) + l(b)) < l(a); }