Leetcode1304. Find N Unique Integers Sum up to Zero
Posted 一只桃子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode1304. Find N Unique Integers Sum up to Zero相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode1304. Find N Unique Integers Sum up to Zero
Leetcode 1304. Find N Unique Integers Sum up to Zero
1304. Find N Unique Integers Sum up to Zero