Your function should return true for the elements of one matrix is the permutation of the other matrix:

x = [1 2 3; 4 5 6; 7 8 9]
y = [3 5 6; 7 1 2; 4 9 8]

or

x = [1 2; 3 4; 5 6]
y = [1 2 3; 4 5 6]

Please note that the matrices can have different shapes or sizes!

Solution Stats

125 Solutions

58 Solvers

Last Solution submitted on May 28, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...