LeetCode 1304 和为零的N个唯一整数(java版)

给你一个整数 n,请你返回 任意 一个由 n 个 各不相同 的整数组成的数组,并且这 n 个数相加和为 0 。

示例 1:

输入:n = 5
输出:[-7,-1,1,3,4]
解释:这些数组也是正确的 [-5,-1,1,2,3],[-3,-1,2,-2,4]。
示例 2:

输入:n = 3
输出:[-1,0,1]
示例 3:

输入:n = 1
输出:[0]

提示:

1 <= n <= 1000

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/find-n-unique-integers-sum-up-to-zero

分析:这道题比较简单,破解思路只需要遍历使临近的两个互为相反数,单数的最后一位默认0;

class Solution {
    public int[] sumZero(int n) {
       int[] power = new int[n];
       int index= 0;
       for(int i=1;i<= n / 2;i++){
	     power[index++]= i;
	     power[index++]= -i;
       }
       return power;
    }
}

结果:
LeetCode 1304 和为零的N个唯一整数(java版)_第1张图片

你可能感兴趣的:(LeetCode(力扣))