码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode1304. Find N Unique Integers Sum up to Zero

时间:2020-01-17 23:15:57      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:通过   image   bsp   返回   个数   array   info   mic   img   

public int[] sumZero(int n) {
int [] Array= new int[n];
int sum=0; //前n-1个数之和
for(int i=0;i<Array.length-1;i++) {
Array[i] = i;
sum+=i;
}
Array[Array.length-1]=(0-sum);
return Array;
}

技术图片

 

 我这里是采取了一个取巧取值的办法 ,但是有没有办法可以随机取值并且最后也是等于0呢

 public int[] sumZero(int n) {
        int[] A = new int[n];
        for (int i = 0; i < n; ++i)
            A[i] = i * 2 - n + 1;
        return A;
    }
这个solution是通过找对称性规律直接在Array[i]里赋相反值达到的效果


评论里提出我的代码n==2时返回的数组是{0,0},这违反了题目中的一致性。

Leetcode1304. Find N Unique Integers Sum up to Zero

标签:通过   image   bsp   返回   个数   array   info   mic   img   

原文地址:https://www.cnblogs.com/chengxian/p/12207512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!