【leetcode_easy_array】1304. Find N Unique Integers Sum up to Zero
时间:2020-07-15 01:23:49
收藏:0
阅读:39
problem
1304. Find N Unique Integers Sum up to Zero
不知道为什么会有这样的题目,答案也是有多种多样的;
solution1: 等差数列;
code
solution2: 添加正负和零;
code
solution3: 左右两端添加;
code
参考
1. leetcode_1304. Find N Unique Integers Sum up to Zero;
完
原文:https://www.cnblogs.com/happyamyhope/p/13298899.html
评论(0)