算法---从一个数组(或者集合中)找出和为某个值的下标
需求,例如:Given nums = [2, 7, 11, 15], target = 9,Because nums[0] + nums[1] = 2 + 7 = 9,return [0, 1]. public static void main(String[] args) { int[] nums = new int[]{2, 7, 5,