每日总结38

class Solution
{
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(target - nums[i] == nums[j])
return new int[]{i,j};
}
}
throw new IllegalArgumentException("No two sum solution");
}
}

leetcode

刷题第一天

上一篇:day22_ 异常 throw throws try..catch.. finally


下一篇:throw和throws的区别