diff --git a/src/data-structures/lru-cache/README.md b/src/data-structures/lru-cache/README.md index 866afa1e..231656ae 100644 --- a/src/data-structures/lru-cache/README.md +++ b/src/data-structures/lru-cache/README.md @@ -26,7 +26,7 @@ You may also find more test-case examples of how the LRU Cache works in [LRUCach ## Costs -| | Worst Case | +| | Average | |---|---| | Space |`O(n)`| | Get item | `O(1)` |