赞
踩
1.不需要写main方法。
2.可以使用playground来Debug。
leetcode第一题
public int[] twoSum(int[] nums, int target) {
for (int i = 0; i < nums.length; i++) {
for (int j = i + 1; j < nums.length; j++) {
if (nums[j] == target - nums[i]) {
//在这里居然忘了int[] 可以直接new
return new int[] { i, j };
}
}
}
throw new IllegalArgumentException("No two sum solution");
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。