119. Pascal's Triangle II

class Solution {public:    vector<int> getRow(int rowIndex) {                vector<vector<int>> v(rowIndex+1,vector<int>());        v[0].push_back(1);        if(rowIndex==0) return v[0];        v[1].
相關文章
相關標籤/搜索