static Pair mostCommonWithCount(LL l) { new MultiSet ms; for (L c : unnull(l)) ms.addAll(c); A s = ms.getMostPopularEntry(); ret s == null ? null : pair(s, ms.get(s)); }