static L nthColumn(LL matrix, int idx) { new L l; for (L row : matrix) l.add(get(row, idx)); ret l; }