How to print Pascal's Triangle Pattern in TypeScript


How to print Pascal's Triangle Pattern in TypeScript ?

Answer

To print Pascal's Triangle Pattern in TypeScript, you can use nested loops where the outer loop controls the rows and the inner loop calculates the values for each row based on the binomial coefficient formula.



✐ Examples

1 Pascal's Triangle Pattern

In this example,

  1. We use a variable n to represent the number of rows in Pascal's triangle.
  2. We initialize an array pascal to store the triangle values.
  3. We use nested loops to calculate and store the values using the binomial coefficient formula.
  4. We print the triangle values using a formatted output.

TypeScript Program

function printPascalsTriangle(n: number): void {
    let pascal: number[][] = [];
    for (let i = 0; i < n; i++) {
        pascal[i] = [];
        for (let j = 0; j <= i; j++) {
            if (j === 0 || j === i) {
                pascal[i][j] = 1;
            } else {
                pascal[i][j] = pascal[i - 1][j - 1] + pascal[i - 1][j];
            }
            process.stdout.write(pascal[i][j] + ' ');
        }
        console.log();
    }
}

let rows: number = 5;
printPascalsTriangle(rows);

Output

1 
1 1 
1 2 1 
1 3 3 1 
1 4 6 4 1 

Summary

In this tutorial, we learned How to print Pascal's Triangle Pattern in TypeScript language with well detailed examples.




More TypeScript Pattern Printing Tutorials

  1. How to print Left Half Pyramid Pattern in TypeScript ?
  2. How to print Right Half Pyramid Pattern in TypeScript ?
  3. How to print Pyramid Pattern in TypeScript ?
  4. How to print Rhombus Pattern in TypeScript ?
  5. How to print Diamond Pattern in TypeScript ?
  6. How to print Hour Glass Pattern in TypeScript ?
  7. How to print Hollow Square Pattern in TypeScript ?
  8. How to print Hollow Pyramid Pattern in TypeScript ?
  9. How to print Hollow Inverted Pyramid Pattern in TypeScript ?
  10. How to print Hollow Diamond Pattern in TypeScript ?
  11. How to print Floyd's Trianlge Pattern in TypeScript ?
  12. How to print Pascal's Triangle Pattern in TypeScript ?