Last active
March 24, 2019 14:00
-
-
Save AdamGold/fc7d71111365fb8785e1271c694002a7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def __init__(self, size=10): | |
self.entries = [None for _ in range(size * 2)] | |
self.actual_size = size * 2 | |
self.size = size |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment