1. 给定一个非负索引 k,其中 k 33,返回杨辉三角的第 k 行。
    2. 在杨辉三角中,每个数是它左上方和右上方的数的和。
    3. 示例:
    4. 输入: 3
    5. 输出: [1,3,3,1]
                                                          ![](https://cdn.nlark.com/yuque/0/2021/gif/2706952/1614214650492-b6f00960-3dfd-4f47-8991-69e482e49a7a.gif#align=left&display=inline&height=240&margin=%5Bobject%20Object%5D&originHeight=240&originWidth=260&size=0&status=done&style=none&width=260)
    
    var generate = function(rowIndex) {
                var res = [0,1,0];
                var arr = [];
                isMin(rowIndex);
                res.pop();
                res.shift();
                return res;
                function isMin(rowIndex){
                    arr = [0];
                    rowIndex -= 1;
                    if(rowIndex == -1){
                        return
                    }else{
                        for(var i=0;i<res.length-1;i++){
                            arr.push(res[i] + res[i+1])
                        }
                        arr.push(0)
                        res = arr;
                        isMin(rowIndex)
                    }
                }
            };
            console.log(generate(1))