Login and get codingA Pascal triangle is a triangular array of integers constructed with the following characteristics:
1. The first row consists of the number 1.
2. For each subsequent row, each element is the sum of the numbers directly above it, on either side.
Here is an example of the first 5 rows:
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1Exercise
Given an input N, return the Nth row of Pascal's triangle in a list.
Example for
N = 5
>>> pascal(N)
[1, 4, 6, 4, 1]
103 out of 103 users completed this Bite.
Will you be Pythonista #104 to crack this Bite?
Resolution time: ~34 min. (avg. submissions of 5-240 min.)
Pythonistas rate this Bite 6.33 on a 1-10 difficulty scale.
» Up for a challenge? 💪