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.