当前位置:   article > 正文

第一次刷Leetcode_leetcode需要写main函数吗

leetcode需要写main函数吗

第一次刷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");
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/633178
推荐阅读
相关标签
  

闽ICP备14008679号