1. You are given a number n.
2. You've to write code to print the pattern given in output format below
Input Format
A number n
Output Format
<img src="http://pepcoding.com/resources/ojquestionresource/images/pat161.JPG" alt="pat161">
Constraints
1 <= n <= 10
Notice
Try First, Check Solution later
1. You should first read the question and watch the question video.2. Think of a solution approach, then try and submit the question on editor tab.3. We strongly advise you to watch the solution video for prescribed approach.Example
Input
7
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