static LL mapToTwoElementLists(Map map) { new LL l; if (map != null) for (Map.Entry e : map.entrySet()) l.add(ll(e.getKey(), e.getValue())); ret l; }