From bfc35f2d20759837d80ec6dd8bec47e4363a9ec9 Mon Sep 17 00:00:00 2001 From: Dazbo Date: Mon, 1 Jan 2024 21:56:44 +0000 Subject: [PATCH] Fix image link --- src/AoC_2023/Dazbo's_Advent_of_Code_2023.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AoC_2023/Dazbo's_Advent_of_Code_2023.ipynb b/src/AoC_2023/Dazbo's_Advent_of_Code_2023.ipynb index a8f6f36..a88f7a5 100644 --- a/src/AoC_2023/Dazbo's_Advent_of_Code_2023.ipynb +++ b/src/AoC_2023/Dazbo's_Advent_of_Code_2023.ipynb @@ -3496,7 +3496,7 @@ "\n", "I will BFS from the start position. My BFS should result in two paths being explored at the same time: i.e. because from any position in a closed loop, we can always walk in two directions.\n", "\n", - "![BFS closed loop]((https://aoc.just2good.co.uk/assets/images/bfs_closed_loop.png))\n", + "![BFS closed loop](https://aoc.just2good.co.uk/assets/images/bfs_closed_loop.png)\n", "\n", "I'll make a `PipeGrid` class by extending my previous `Grid` class. In this class:\n", "\n",