diff --git a/sources/tech/20190920 Hone advanced Bash skills by building Minesweeper.md b/sources/tech/20190920 Hone advanced Bash skills by building Minesweeper.md index 4ef4ba10bf..1a6a4a255c 100644 --- a/sources/tech/20190920 Hone advanced Bash skills by building Minesweeper.md +++ b/sources/tech/20190920 Hone advanced Bash skills by building Minesweeper.md @@ -1,5 +1,5 @@ [#]: collector: (lujun9972) -[#]: translator: ( ) +[#]: translator: (wenwensnow) [#]: reviewer: ( ) [#]: publisher: ( ) [#]: url: ( ) @@ -28,7 +28,6 @@ Before I started writing any code, I outlined the ingredients I needed to create 5. Create the endgame logic - ### Print a minefield In Minesweeper, the game world is a 2D array (columns and rows) of concealed cells. Each cell may or may not contain an explosive mine. The player's objective is to reveal cells that contain no mine, and to never reveal a mine. Bash version of the game uses a 10x10 matrix, implemented using simple bash arrays.