leetcode1304

Posted AsenYang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode1304相关的知识,希望对你有一定的参考价值。

 1 class Solution:
 2     def sumZero(self, n: int) -> List[int]:
 3         res = []
 4         k = n // 2
 5         i = 1
 6         for j in range(k):
 7             res.append(i)
 8             res.append(i * (-1))
 9             i += 1
10         if n % 2 == 1:
11             res.append(0)
12         return res

 

以上是关于leetcode1304的主要内容,如果未能解决你的问题,请参考以下文章

leetcode1304. Find N Unique Integers Sum up to Zero

LeetCode --- 1304. Find N Unique Integers Sum up to Zero 解题报告

Leetcode刷题100天—1304. 和为零的N个唯一整数(数学)—day47

Leetcode刷题100天—1304. 和为零的N个唯一整数(数学)—day47

Leetcode1304. Find N Unique Integers Sum up to Zero

Leetcode 1304. Find N Unique Integers Sum up to Zero