25-cxsj-final/backend/problems/n_queens/generator.py

9 lines
235 B
Python

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}