Skip to content
Snippets Groups Projects
Commit b1dfb8aa authored by Pamela Dyer's avatar Pamela Dyer
Browse files

Update Tic_Tac_Toe.mp

parent dbc9bf49
No related branches found
No related tags found
1 merge request!61Update Tic_Tac_Toe.mp
......@@ -46,7 +46,7 @@
│*│ └────────────────────────────────────────────────────┘ │
│*│ │
│*│ ┌─[ Search Terms ]───────────────────────────────────┐ │
│*│ │ tic-tac-toe, behavior; strategy; assertion checking│ │
│*│ │ tic-tac-toe; behavior, strategy; assertion checking│ │
│*│ └────────────────────────────────────────────────────┘ │
│*│ │
│*│ ┌─[ Instructions ]───────────────────────────────────┐ │
......@@ -122,7 +122,7 @@ choosing_center_on_2nd_Move_and_any_corner_on_4th_move :
/* fourth move - mistake */ O_chooses_any_corner
/* fifth move */ X_blocks
/* sixth move */ O_blocks
/* seventh move */ X_wins;
/* seventh move */ X_wins;
/* No mistakes made by either player */
......@@ -176,8 +176,8 @@ OD;
COORDINATE $second_move:
(
O_chooses_remnant_next_to_X_on_first_turn |
O_chooses_remnant_NOT_beside_an_X_on_first_turn |
O_chooses_corner |
O_chooses_remnant_NOT_beside_an_X_on_first_turn |
O_chooses_corner |
O_chooses_center
)
DO
......@@ -186,7 +186,7 @@ OD;
COORDINATE $third_move:
(
X_chooses_center |
X_chooses_any_corner |
X_chooses_any_corner |
X_chooses_corner_opposite_previous_X
)
DO
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment