Hello,
I don't know why the checker doesn't accept such a solution
although it is correct, it is like if it expects a very precise solution!
Do you have an idea about this? Thanks.
anyway I'm going to do a classic solution
package en.codegym.task.pro.task05.task0504;
/*
Combining arrays
*/
public class Solution {
public static int[] firstArray = new int[]{0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
public static int[] secondArray = new int[]{10, 11, 12, 13, 14, 15, 16, 17, 18, 19};
public static int[] resultArray;
public static void main(String[] args) {
//write your code here
resultArray = new int[firstArray.length + secondArray.length];
for (int i = 0; i < resultArray.length; i++) {
if (i < 10)
resultArray[i] = firstArray[i];
else
resultArray[i] = secondArray[i - 10];
System.out.print(resultArray[i] + ", ");
}
}
}