Professor Abdul-Quader
Lesson 0
Design an algorithm which, given input \(n\), outputs the following “triangular” pattern:
1
1, 2
1, 2, 3
...
1, 2, 3, ..., n
Determine the running time of this algorithm.
First, just figure out: given \(n\), how to output the \(n\)-th row of that pattern:
1, 2, ..., n
Running time?
Now use your method in part 1 to output \(n\) rows so that, for each \(i\) from \(1\) to \(n\), you output the row \(1, 2, \ldots, i\).
Running time?
Work on these with a partner or in small groups.
Triangle.java