From a1146d57554e45803eea54160d08170a41665821 Mon Sep 17 00:00:00 2001 From: Michele Sessa Date: Thu, 21 Sep 2023 16:59:20 +0100 Subject: [PATCH] style(minesweeper): move instructions title before the instructions --- subjects/minesweeper/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/minesweeper/README.md b/subjects/minesweeper/README.md index 2e306496..8ace18cd 100644 --- a/subjects/minesweeper/README.md +++ b/subjects/minesweeper/README.md @@ -1,13 +1,13 @@ ## minesweeper +### Instructions + Create a function that takes a minesweeper board as an array of strings and return the board solved. Minesweeper is a very old game where some mines are placed in a board and you should calculate how many mines are touching every free field and write the count in the respective place. > We will only test your function with empty and valid boards. -### Instructions - ### Expected Function ```rust