Naive Algorithm (Counting Solutions; Constructing solutions n-Queens Problem)
Revision as of 11:17, 15 February 2023 by Admin (talk | contribs) (Created page with "== Time Complexity == $O(n^n)$ == Space Complexity == $O(n)$ words (Keep track of current configuration being tested, along with current count) == Description == == Approximate? == Exact == Randomized? == No, deterministic == Model of Computation == Word RAM == Year == 1848 == Reference ==")
Time Complexity
$O(n^n)$
Space Complexity
$O(n)$ words
(Keep track of current configuration being tested, along with current count)
Description
Approximate?
Exact
Randomized?
No, deterministic
Model of Computation
Word RAM
Year
1848