✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Given the below code, what is the contents of the mystery object at the end of the following block of code:
mystery = ArraySet(10)
mystery.add(1)
mystery.add(1)
mystery.add(2)
mystery.add(3)
mystery.remove(3)
print(mystery)