[CODESTATES im16] N-Queens
숫자 오름차순 순서로 수도코드를 짰음.
정리하다 보니 더 나은 방법이 떠올랐기 때문에 현재로써는(내가 짤 수 있는 로직 기준) n queens가 가장 효율적임.(n rooks도 그 방법으로 할 예정)
1. findNRooksSolution()
: returns a single solution to the n-rooks problem
2. countNRooksSolutions()
: returns a count of the total number of solutions to the n-rooks problem
3. findNQueensSolution()
: returns a single solution to the n-queens problem
4. countNQueensSolutions()
: returns a count of the total number of solutions to the n-queens problem
'TIL' 카테고리의 다른 글
191202(월) TIL-1. Interaction With Server (0) | 2019.12.02 |
---|---|
191128(목) TIL-1. CSS (0) | 2019.11.28 |
191122(금) TIL-2. Inheritance & Polymorphism (0) | 2019.11.22 |
191120(수) TIL-3. Understanding Prototype Chain (0) | 2019.11.21 |
191120(수) TIL-2. Start Inheritance patterns (0) | 2019.11.21 |