Suppose the cost/penalty matrix of a game is given as:
$$M = \begin{bmatrix} (-5,-5) & (0,0) \\ (0,0) & (-3,-3) \end{bmatrix}$$
Then the game as two equilibria $(u_{11},u_{21})$ and $(u_{12},u_{22})$ which have the lowest cost at $J(u_{11},u_{21}) = (-5,5)$ and $J(u_{12},u_{22}) = (-3,3)$
Based on how the equilibria is computed for this game, would it be reasonable to extend and general to all bimatrix games and say that to find the equilibria you need to (algorithmically speaking):
start with first column
find the strategy pair that is the minimum (element-wise), or conclude there doesn't exist a minimum (element-wise)
go to next column and repeat 2
Conclusion: to find the equilibrium is to find the minimum for each column.
Would there be any catch if I follow this rule and perform this algorithm every time I am given a bimatrix?