Cassandra Sziklai

Results 1 comments of Cassandra Sziklai

Here is the updated pop() code, as discussed in the meeting. ```python def pop(self) -> Optional[int]: """Pops the PIFO.""" print("pop " + str(self.hot)) if self.pifo_len == 0: if self.error_mode: raise...