static void swapIntArray(int[] l, int i, int j) { if (i == j) ret; int o = l[i]; l[i] = l[j]; l[j] = o; }