From f2810936fade8b59828355cfcb80ecd23aa44ab6 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Tue, 28 Nov 2023 19:18:20 +0100 Subject: [PATCH] fix(algorithms): don't include date in the slug Signed-off-by: Matej Focko --- algorithms/12-hash-tables/2023-11-28-breaking/01-python.md | 1 + algorithms/12-hash-tables/2023-11-28-breaking/02-mitigations.md | 1 + algorithms/12-hash-tables/2023-11-28-breaking/index.md | 1 + 3 files changed, 3 insertions(+) diff --git a/algorithms/12-hash-tables/2023-11-28-breaking/01-python.md b/algorithms/12-hash-tables/2023-11-28-breaking/01-python.md index c35c626..63c8e6d 100644 --- a/algorithms/12-hash-tables/2023-11-28-breaking/01-python.md +++ b/algorithms/12-hash-tables/2023-11-28-breaking/01-python.md @@ -1,5 +1,6 @@ --- id: python +slug: /hash-tables/breaking/python title: Breaking Python description: | Actually getting the worst-case time complexity in Python. diff --git a/algorithms/12-hash-tables/2023-11-28-breaking/02-mitigations.md b/algorithms/12-hash-tables/2023-11-28-breaking/02-mitigations.md index 8d58239..e724a71 100644 --- a/algorithms/12-hash-tables/2023-11-28-breaking/02-mitigations.md +++ b/algorithms/12-hash-tables/2023-11-28-breaking/02-mitigations.md @@ -1,5 +1,6 @@ --- id: mitigations +slug: /hash-tables/breaking/mitigations title: Possible Mitigations description: | Talking about the ways how to prevent the attacks on the hash table. diff --git a/algorithms/12-hash-tables/2023-11-28-breaking/index.md b/algorithms/12-hash-tables/2023-11-28-breaking/index.md index 60a4f58..d6b2811 100644 --- a/algorithms/12-hash-tables/2023-11-28-breaking/index.md +++ b/algorithms/12-hash-tables/2023-11-28-breaking/index.md @@ -1,5 +1,6 @@ --- id: breaking +slug: /hash-tables/breaking title: Breaking Hash Table description: | How to get the linear time complexity in a hash table.