LeetCode 119. Pascal's Triangle II

這個問題最開始可以像前面一個題一樣,用多個數組,然後取那一行 我開始只想用一個ret數組,發現總是出錯,後面用tmp數組,可以了 int* getRow(int rowIndex, int* returnSize) { int *ret = (int*)malloc(sizeof(int) * (rowIndex+1)); int *tmp = (int*)malloc(sizeo
相關文章
相關標籤/搜索