Merge pull request #15611 from wenwensnow/patch-1

start translate
This commit is contained in:
Xingyu.Wang 2019-09-24 07:45:28 +08:00 committed by GitHub
commit b136a2bb86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.