amr saqr wrote:Actually, I'm having problems with understanding the problem description,
should i cut the matrix vertically or horizontally to make the comparison to check whether it's symmetric or not ????
sorry but I'm little confused here![]()
and thanx in advance
No, you don't have to.
If the matrix is like:
- Code: Select all
a b c d
e f g h
i j k l
m n o p
then you have to check;
- Code: Select all
All the values are non-negative and a==p && b==o && c==n && ..
-----
Rio


