Skip to content

Commit

Permalink
DYK fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
attogram committed May 19, 2019
1 parent f1a1c01 commit afa2046
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/DidYouKnow.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const tidbits = [
// License: Creative Commons Attribution-ShareAlike License
"The eight queens puzzle is an example of the n queens problem of placing n non-attacking queens on an n×n chessboard.",
"Chess composer Max Bezzel published the original eight queens puzzle in 1848.",
"Franz Nauck published the a solutions to the eight queens puzzle in 1850.",
"Franz Nauck published a solution to the eight queens puzzle in 1850.",
"Many mathematicians, including Carl Friedrich Gauss, have worked on the 8 queens puzzle and its generalized n-queens version.",
"In 1874, S. Gunther proposed a method using determinants to find solutions to the eight queens puzzle.",
"In 1972, Edsger Dijkstra used the eight queens problem to illustrate the power of structured programming.",
Expand Down Expand Up @@ -42,7 +42,7 @@ const tidbits = [
// A New Approach to Solve N-Queen Problem with Parallel Genetic Algorithm.
// J. ADV COMP ENG TECHNOL, 4(2) Spring 2018 : 69-78
// License: Creative Commons Attribution 4.0 International Licence.
"The N-Queen problem is a well-known CSP problem.",
"The N-Queen problem is a well-known Constraint Satisfaction Problem.",
"Traditional methods of solving the N-queens problem are based on back-tracking.",
"The N-Queen problem shows a large class of nondeterministic problems that cannot be solved using deterministic algorithms in reasonable time.",
"Many algorithms and methods have been used to resolve the n-Queen problem.",
Expand Down
2 changes: 1 addition & 1 deletion src/EightQueens.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import Title from './Title.js';
import queenUnderAttackSvg from './queenUnderAttack.svg';

const gameName = 'Eight Queens';
const gameVersion = '0.4.2';
const gameVersion = '0.4.3';
const gameHome = 'https://github.com/attogram/EightQueens';

class EightQueens extends Component {
Expand Down

0 comments on commit afa2046

Please sign in to comment.