Back and Forth Rows - MATLAB Cody - MATLAB Central

Problem 11. Back and Forth Rows

Difficulty:Rate

Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the examples below.

Examples:

 Input  n = 3
 Output a = [ 1 2 3
              6 5 4
              7 8 9 ]
 Input  n = 4
 Output a = [ 1     2     3     4
              8     7     6     5
              9    10    11    12
             16    15    14    13 ]

Solution Stats

47.17% Correct | 52.83% Incorrect
Last Solution submitted on Nov 18, 2025

Problem Comments

Solution Comments

Show comments
Join Cody Contest 2025 — Have Fun and Win Prizes!
...
We’re excited to invite you to Cody Contest 2025! 🎉 Pick a team,...

Problem Recent Solvers6929

Suggested Problems

More from this Author96

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!