From 48d55ce62a348c3233d33aa6551a74d46d423ee6 Mon Sep 17 00:00:00 2001 From: lee Date: Wed, 24 Feb 2021 10:49:39 +0000 Subject: [PATCH] formatting exercise --- subjects/tic_tac_toe/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/subjects/tic_tac_toe/README.md b/subjects/tic_tac_toe/README.md index 9d82475a..1e442c62 100644 --- a/subjects/tic_tac_toe/README.md +++ b/subjects/tic_tac_toe/README.md @@ -7,17 +7,17 @@ You must create a `tic tac toe` checker. Create the following functions: - `tic_tac_toe` which receives: - - a table of vectors (Vec>). - - It should return a String `player O won` or `player X won` or `Tie`. + - a table of vectors (Vec>). + - It should return a String `player O won` or `player X won` or `Tie`. - `diagonals` which will receive: - - a player and a table. - - It should return a boolean, this must return `true` if one of the diagonals are completed by the player. + - a player and a table. + - It should return a boolean, this must return `true` if one of the diagonals are completed by the player. - `horizontal` which will receive: - - a player and a table. - - It should return a boolean, this must return `true` if one of the horizontal lines are completed by the player. -- `vertical` which will receive: - - a player and a table. - - It should return a boolean, this must return `true` if one of the vertical lines are completed by the player. + - a player and a table. + - It should return a boolean, this must return `true` if one of the horizontal lines are completed by the player. +- `vertical` which will receive: + - a player and a table. + - It should return a boolean, this must return `true` if one of the vertical lines are completed by the player. ### Notions