Leetcode 1304.和为零的N个唯一整数(Find N Unique Integers Sum up to Zero)

Leetcode 1304.和为零的N个唯一整数

1 题目描述(Leetcode题目链接)

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

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

提示:1 <= n <= 1000

2 题解

  此题过于开放。

class Solution:
    def sumZero(self, n: int) -> List[int]:
        return list(range(1, n)) + [-(n-1)*n//2]

你可能感兴趣的:(Leetcode)