public static void swap(int x, int y, int[] arr) { int temp = arr[x]; arr[x] = arr[y]; arr[y] = temp; }