Pattern 16
easy
1. You are given a number n. 2. You've to write code to print the pattern given in output format below
Constraints
1 <= n <= 10
Format
Input
A number n
Output
Example
Sample Input
7
Sample Output
1 1
1 2 2 1
1 2 3 3 2 1
1 2 3 4 4 3 2 1
1 2 3 4 5 5 4 3 2 1
1 2 3 4 5 6 6 5 4 3 2 1
1 2 3 4 5 6 7 6 5 4 3 2 1
Question Video