Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 428 Bytes

0118 | 杨辉三角.md

File metadata and controls

21 lines (20 loc) · 428 Bytes
class Solution {
public:
    vector<vector<int>> generate(int numRows) {
        vector<vector<int>> res;
        for(int i=1; i<=numRows; i++)
        {
            res.push_back(vector<int>(i, 1));
        }

        for(int i=2; i<numRows; i++)
        {
            for(int j=1; j<i; j++)
            {
                res[i][j] = res[i-1][j-1] + res[i-1][j];
            }
        }
        return res;
    }
};