[問題] leetcode 製造一串加起來為0數列
看板Prob_Solve (計算數學 Problem Solving)作者hayuyang (Cloud)時間4年前 (2020/02/07 17:05)推噓1(1推 0噓 0→)留言1則, 1人參與討論串1/1
1304. Find N Unique Integers Sum up to Zero
int* sumZero(int n, int* returnSize){
int N=n;
int su=0;
int i=0,j=0;
int* r = malloc(N * sizeof(int));
for(i=0;i<N-1;i++) {
r[i]=i;
su=su+i;
};
r[N-1]=(-1)*su;
return r;
}
寫的方法就是 前n-1項數列 第i項就是i
第n項是全部加起來的負項
搞不懂哪裡錯了 其他人定義r的方式跟我差不多但我就是會出問題= =
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 114.40.138.220 (臺灣)
※ 文章網址: https://www.ptt.cc/bbs/Prob_Solve/M.1581066358.A.FAB.html
推
02/07 20:37,
4年前
, 1F
02/07 20:37, 1F
Prob_Solve 近期熱門文章
PTT數位生活區 即時熱門文章