From 4cc789ad78ae0ea8159038face9481aa66d46cc4 Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Thu, 16 May 2024 14:10:26 +0200 Subject: [PATCH] minesweeper: add deep dive info (#2442) --- exercises/minesweeper/metadata.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/exercises/minesweeper/metadata.toml b/exercises/minesweeper/metadata.toml index c6f56b4012..5d053cf4d7 100644 --- a/exercises/minesweeper/metadata.toml +++ b/exercises/minesweeper/metadata.toml @@ -1,2 +1,4 @@ title = "Minesweeper" blurb = "Add the numbers to a minesweeper board." +deep_dive_youtube_id = "dLT2h2hODhs" +deep_dive_blurb = "We explore nested for loops, clever use of min/max to simplify bounds checking, functional pipelines and using two-dimensional matrices."