Array ( [0] => [1] => questions [2] => Basic [3] => Right-Triangle-with-Alphabets ) Patterns | Right Triangle with Alphabets | THE INQUISITIVE





Right Triangle with Alphabets

LEVEL:Beginner

Description

Print the pattern as shown below for all test cases.

Input Format

First line contains the value N.

Output Format

Print the output as shown in below examples.


Example 1:

Input
3
Output
A
B B
C C C
Example 2:

Input
4
Output
A
B B
C C C
D D D D
Example 3:

Input
5
Output
A
B B
C C C
D D D D
E E E E E

oops

Login to see Discussion




Approach


Step-i) assign 65 to ch as 65 is the ascii value of A
Step-ii) assign 1 to i
Step-iii) assign 1 to j
Step-iv)print ch and space and increment value of j by one
Step-v)repeat step iv till j is less than or equal to i
Step-vi)increment ch by one value , go to next line and increment i by one value
Step-vii) repeat steps iii to vi till i is less than or equal to N

Time Complexity: O(n^2)
Space Complexity: O(1)


Note :

Let us know if you can come up with a better approach, mail us at support@theinquisitive.in Your approach will be reviewed and posted with credits to you.

oops

Login to see Solution