Write pseudocode to print the following pattern 1 232 34543 4567654 567898765
What should be the approach behind pattern problems?
In this ques. I observe that
- the number is the same as seen from left to right and right to left
- 2nd number has 3 digits, 3rd has 5 , 4th has 7 and so on
- value of digits are incremented linearly and decremented linearly
However, I am not to able to write a pseudocode. Pls help