Problem 43073. Check if a matrix is a palindrome in all directions

Check if a matrix is a palindrome both vertically and horizontally.

You function will return true for [1,2,1] or [2,7,2; 6,9,6; 2,7,2] . But it should return false for [1,2,3] or [2,7,2; 6,9,6; 3,5,3] .

Solution Stats

51.4% Correct | 48.6% Incorrect
Last Solution submitted on Mar 17, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers96

Community Treasure Hunt

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

Start Hunting!