Introduction
Here is the source code for Main.java
Source
//package com.java2s;
import java.util.List;
public class Main {
public static void copy(List<Integer> destList, List<Integer> srcList) {
destList.removeAll(destList);
for (Integer val : srcList) {
destList.add(val);
}
}
}