static L keysWithMultipleValues(MultiMap mm) { new L l; for (A key : mm.keySet()) if (l(mm.get(key)) > 1) l.add(key); ret l; }