mirror of
https://github.com/ltcptgeneral/cs239-caching.git
synced 2025-10-09 06:10:19 +00:00
fix sieve nameing
This commit is contained in:
@@ -8,7 +8,7 @@ class Node:
|
||||
self.next = None
|
||||
self.prev = None
|
||||
|
||||
class SeiveCache(Cache):
|
||||
class SieveCache(Cache):
|
||||
def __init__(self, limit: int):
|
||||
super().__init__(limit)
|
||||
self.limit = limit # Fix: Store limit properly
|
Reference in New Issue
Block a user