import java.util.*; public class Solution { /** * * @param numbers int整型一维数组 * @param target int整型 * @return int整型一维数组 */ public int[] twoSum (int[] numbers, int target) { //最简单的想法 双重for循环解决 但是耗时太长 //用map存 值和下标 利用hashcode找符合的 Map<Integer, Integer> cunchu = new HashMap<Integer, Integer>(n...