Add 2026.05.13 overview

This commit is contained in:
2026-05-13 11:33:10 -07:00
parent f5e2fca2ac
commit 9f04971c20
2 changed files with 1 additions and 3 deletions

View File

@@ -1,10 +1,9 @@
#
class Student:
def __init__(self, name: str, year: int):
self.name = name
self.year = year
# homework: implement this Queue which orders students by year.
# students with a higher year are placed in front of students with a lower year
class Queue:
@@ -15,4 +14,3 @@ class Queue:
def popleft(self) -> Student:
return Student(name="", year=0)

Binary file not shown.