Files
homelab-dsa-tutoring/shared/notes-and-examples/2026.03.04/homework.py
Brendan Chen b6caeb0130
Some checks failed
Deploy to birb co. production / deploy (push) Failing after 6s
Add 2026.03.04
2026-03-04 14:55:42 -08:00

8 lines
239 B
Python

# Homework:
# Make the Dictionary class work for any length string. Use any method you can think of.
# The following should work:
# sample_dict = Dictionary()
# sample_dict.set("test string", "test value")
# sample_dict.set("foo", "bar")