import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param numbers int整型一维数组 * @return int整型 */ public int duplicate (int[] numbers) { // write code here int length=numbers.length; int res,temp; //通过新建一个和原数组一样长度的数组来记录出现过的数字 int[] had=new int[length]; //遍历原数组 ...