From 9728aa537e4336bd89a47ff050843a2bef3fd262 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 20 Jul 2024 19:26:08 +0100 Subject: [PATCH] posts: union-find: fix typo --- content/posts/2024-06-24-union-find/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/2024-06-24-union-find/index.md b/content/posts/2024-06-24-union-find/index.md index 7c9435c..dfe4c68 100644 --- a/content/posts/2024-06-24-union-find/index.md +++ b/content/posts/2024-06-24-union-find/index.md @@ -15,7 +15,7 @@ favorite: false disable_feed: false --- -To kickoff the [series]({{< ref "/series/cool-algorithms/">}}) of posts about +To kickoff the [series]({{< ref "/series/cool-algorithms/" >}}) of posts about algorithms and data structures I find interesting, I will be talking about my favorite one: the [_Disjoint Set_][wiki]. Also known as the _Union-Find_ data structure, so named because of its two main operations: `ds.union(lhs, rhs)` and