diff options
| author | Ben Winston | 2019-01-10 20:40:07 -0500 |
|---|---|---|
| committer | Ben Winston | 2019-01-10 20:40:07 -0500 |
| commit | af7e0f1bde2e44944a5c95f42c83e17d564451cf (patch) | |
| tree | 5453fdaccf339969a8d1036f30f7ad7543ff2afc | |
| parent | 0528ff6eed89257d5149e32aab85da089e84654c (diff) | |
added spiral (alt) win condition
| -rw-r--r-- | fifteen.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,7 +6,8 @@ winning_boards = { "classic": [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16], "odds/evens": [1,3,5,7,9,11,13,15,2,4,6,8,10,12,14,16], "odds/evens (alt)": [1,3,5,7,2,4,6,8,9,11,13,15,10,12,14,16], - "spiral": [7,8,9,10,6,1,2,11,5,4,3,12,16,15,14,13] + "spiral": [7,8,9,10,6,1,2,11,5,4,3,12,16,15,14,13], + "spiral (alt)": [1,2,3,4,12,13,14,5,11,16,15,6,10,9,8,7] } board = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16] |
