Just a quick question, im defining a class were only a set of integers is used. I cannot use the following datatypes in defining my class: set, frozenset and dictionaries.
i need help defining:
remove(self,i)
: Integer i is removed from the set. An exception is raised if i is not in self.
discard(self, i)
: integer i is removed from the set. No exception is raised if i is not in self