第一次刷Leetcode

第一次刷Leetcode

记录一下遇到的问题

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");
}

你可能感兴趣的:(第一次刷Leetcode)