class Solution {
public int[] twoSum(int[] nums, int target) {
int[] a = new int[2];
int i,j;
outer: for(i=0 ; i
for(j=i+1 ; j
if(nums[i] + nums[j] == target)
break outer;
}
}
return a;
}
}