to 4, and the rest to 10. Is there a better way to do this?
int[] arr2 = new int[26];
arr2[0] = 4;
Arrays.fill(arr2,1,25,10);
Stream api
Обсуждают сегодня