[問題] leetcode 製造一串加起來為0數列

看板Prob_Solve (計算數學 Problem Solving)作者 (Cloud)時間4年前 (2020/02/07 17:05), 編輯推噓1(100)
留言1則, 1人參與, 4年前最新討論串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
N=2
02/07 20:37, 1F
文章代碼(AID): #1UFIXs-h (Prob_Solve)
文章代碼(AID): #1UFIXs-h (Prob_Solve)