NyanDoggo commited on
Commit
7c1c56c
·
verified ·
1 Parent(s): 4561cdd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -3
README.md CHANGED
@@ -1,3 +1,19 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - chess
5
+ - puzzle
6
+ size_categories:
7
+ - 100K<n<1M
8
+ ---
9
+ Solutions to all [Hippodrome chess puzzles](https://www.chessvariants.org/solitaire.dir/hippodrome.html).
10
+ Hippodrome is a type of chess puzzle in which the player has to move 4 knights from the bottom row to the top row (or some designated spots) in a 4x4 grid. Solutions is generated using A* search algorithm.
11
+ Note that since there are only 1 empty spot, and no captures allowed, this essentially means that queens function effectively as kings.
12
+
13
+ Detailed Statistics:
14
+ - Total number of puzzle configurations: 415800
15
+ - Total number of unsolvable configurations: 2730
16
+ - Shortest solution: 21 moves
17
+ - Longest solution: 38 moves
18
+ - Average moves: 26.6 moves
19
+ - Median moves: 27 moves