GitHub

Pascal Triangle.md

Given a positive integer n, return the nth row of pascal's triangle. Pascal's triangle is a triangular array of the binomial coefficients formed by summing up the elements of previous row. Input: n = ...
Pascal's triangle is the triangular array of numbers that begins with 1 on the top and with 1's running down the two sides of a triangle. Each new number lies between two numbers and below them, and ...