from typing import Dict, Any
def generate_n_queens_case(n: int = 8) -> Dict[str, int]:
"""
Generates a case for N-Queens.
Actually just returns N since the problem is defined by the board size.
return {"n": n}