摘要:
= =就是个模拟题class Solution {public: vector > generate(int numRows) { // Start typing your C/C++ solution below // DO NOT write int main() function vector > ans; vector tmp; if(numRows == 0) return ans; tmp.push_back(1); ans.push_back(tmp); fo... 阅读全文
posted @ 2013-08-25 17:48 1957 阅读(191) 评论(0) 推荐(0)
浙公网安备 33010602011771号