I'm building a bingo game and I'm stuck on how check if two bingo cards randomly generated are different. Each card corresponds to a 3x9 matrix with four zeroes on each row (lets say they are empty):
![]()
I've been thinking on separate each three columns, so I would have three 3x3 matrixes, and check their modules, but don't like it because there could be matrixes with same values but distinct order and same modules that would be treaten as if they were the same.
Which would be the best appproach to this topic?