摘要: 118. Pascal's Triangle 题意:输出杨辉三角前n行 我的思路:大水题 我的代码: class Solution { public: vector<vector<int>> generate(int numRows) { vector<vector<int>> ans; if (n 阅读全文
posted @ 2017-05-01 22:05 Silence、 阅读(347) 评论(0) 推荐(0) 编辑