I have below array
Код: Выделить всё
int[] a={1,2,3,1,1,2,2,1,3,2,1};
Below should be output:
Код: Выделить всё
{1,1,1,1,1,2,3,2,2,3,2}
Источник: https://stackoverflow.com/questions/781 ... t-as-it-is
Код: Выделить всё
int[] a={1,2,3,1,1,2,2,1,3,2,1};
Код: Выделить всё
{1,1,1,1,1,2,3,2,2,3,2}