给出一个值numRows,生成杨辉三角的前numRows行
示例1
输入
5
输出
[[1],[1,1],[1,2,1],[1,3,3,1],[1,4,6,4,1]]
加载中...
import java.util.*; public class Solution { /** * * @param numRows int整型 * @return int整型ArrayList
> */ public ArrayList
> generate (int numRows) { // write code here } }
class Solution { public: /** * * @param numRows int整型 * @return int整型vector
> */ vector
> generate(int numRows) { // write code here } };
# # # @param numRows int整型 # @return int整型二维数组 # class Solution: def generate(self , numRows ): # write code here
/** * * @param numRows int整型 * @return int整型二维数组 */ function generate( numRows ) { // write code here } module.exports = { generate : generate };
# # # @param numRows int整型 # @return int整型二维数组 # class Solution: def generate(self , numRows ): # write code here
package main /** * * @param numRows int整型 * @return int整型二维数组 */ func generate( numRows int ) [][]int { // write code here }
5
[[1],[1,1],[1,2,1],[1,3,3,1],[1,4,6,4,1]]