Recca Chao 的 gitHub page

推廣網站開發,包含 Laravel 和 Kotlin 後端撰寫、自動化測試、讀書心得等。Taiwan Kotlin User Group 管理員。

View on GitHub

Hi, here’s your problem today. This problem was recently asked by AirBNB:

Pascal’s Triangle is a triangle where all numbers are the sum of the two numbers above it. Here’s an example of the Pascal’s Triangle of size 5. 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 Given an integer n, generate the n-th row of the Pascal’s Triangle.

Here’s an example and some starter code.

def pascal_triangle_row(n):

Fill this in.

print(pascal_triangle_row(6))

[1, 5, 10, 10, 5, 1]