leetcode+楊輝三角

點擊打開連接 class Solution { public: vector<int> getRow(int rowIndex) { vector<int> result(rowIndex+1, 1); if(rowIndex < 2) return result; for(int i=2; i<=rowIndex; i++){
相關文章
相關標籤/搜索