Implement a method to concatenate all positive numbers of two input ArrayLists to a single resulting list.
At first, elements from the first ArrayList should go, and then the elements from the second ArrayList.
Implement a method to concatenate all positive numbers of two input ArrayLists to a single resulting list.
At first, elements from the first ArrayList should go, and then the elements from the second ArrayList.
Sample Input 1:
8 11 -2 -3 14 15
-1 33 12 -3 -5Sample Output 1:
8 11 14 15 33 12Create a free account to access the full topic