How to write pseudocode for this pattern kindly explain?

Write pseudocode to print the following pattern
1
232
34543
4567654
567898765

@Subrat
hello subrat,
here in above pattern.
a) each row will contain 2*row_number-1 values

  • for example

  • if row no =1 then 2*1-1=1 values
  • if row no =2 then 2*2-1=3 values
  • if row no =3 then 2*3-1=5 value

for i from -> 1 to number_of_rows

  • for j from-> i to 2*i-1

    • print(j)
  • for j from 2*i-2 to i

    • print(j)

Thank you so much Sir

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.

Sir I understand how construct the rows and columns but how we put tha values on it.I am confused wo construct two loops for each coloumn