public class Solution { /** * * @param numbers int整型一维数组 * @param target int整型 * @return int整型一维数组 */ public int[] twoSum (int[] numbers, int target) { // write code here if(numbers == null || numbers.length < 2){ return new int[]{-1,-1}; } //数组值 数组下表 Map<Integer,Integer> map = new HashMap&...