Why does this work:
Table[ FindMaximum[x^2 - y^2, {y, 1}][[1]], {x, 1}]
While this does not:
FindMinimum[ FindMaximum[x^2 - y^2, {y, 1}][[1]], {x, 1}]
How can I make it work? It is not substituting the value of x before maximizing, but nothing I try seems to help.
