import java.util.*; public class Solution { /** * * @param numbers int整型一维数组 * @param target int整型 * @return int整型一维数组 */ public int[] twoSum (int[] numbers, int target) { // write code here //使用HashMap 数组的值作为key 数组下标作为value Map<Integer,Integer> map = new HashMap<Integer,Integer>(); //遍历...