Introduction
Here is the source code for Main.java
Source
//package com.java2s;
import java.util.*;
public class Main {
public static int[] toIntArray(List<Integer> integers) {
int[] x = new int[integers.size()];
for (int i = 0; i < integers.size(); i++)
x[i] = integers.get(i);
return x;
}
}