fix(algorithms): don't include date in the slug

Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
Matej Focko 2023-11-28 19:18:20 +01:00
parent 2794519506
commit f2810936fa
Signed by: mfocko
GPG key ID: 7C47D46246790496
3 changed files with 3 additions and 0 deletions

View file

@ -1,5 +1,6 @@
--- ---
id: python id: python
slug: /hash-tables/breaking/python
title: Breaking Python title: Breaking Python
description: | description: |
Actually getting the worst-case time complexity in Python. Actually getting the worst-case time complexity in Python.

View file

@ -1,5 +1,6 @@
--- ---
id: mitigations id: mitigations
slug: /hash-tables/breaking/mitigations
title: Possible Mitigations title: Possible Mitigations
description: | description: |
Talking about the ways how to prevent the attacks on the hash table. Talking about the ways how to prevent the attacks on the hash table.

View file

@ -1,5 +1,6 @@
--- ---
id: breaking id: breaking
slug: /hash-tables/breaking
title: Breaking Hash Table title: Breaking Hash Table
description: | description: |
How to get the linear time complexity in a hash table. How to get the linear time complexity in a hash table.