Given a non-negative indexkwherek≤ 33, return thekth index row of the Pascal’s triangle. Note that the row index starts from 0. 在杨辉三角中,每个数是它左上方和右上方的数的和。 In Pascal’s triangle, each number is the sum of the two numbers directly above it. 示例: 输入: 3 输...