每日总结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

刷题第一天

posted @ 2021-10-28 22:52  热爱代码的某人  阅读(14)  评论(0编辑  收藏  举报