Given an integer rowIndex, return the rowIndexth (0-indexed) row of the Pascal's triangle.
Example 1:
Input: rowIndex = 3
Output: [1,3,3,1]
Given an integer rowIndex, return the rowIndexth (0-indexed) row of the Pascal's triangle.
Example 1:
Input: rowIndex = 3
Output: [1,3,3,1]