Lisää luokkaan TreeSet
metodi remove
, joka poistaa joukosta annetun alkion kurssin materiaalin mukaisella tavalla. Jos joukossa ei ole alkiota, metodin ei tule tehdä mitään.
Toteuta tiedostoon treerem.py
luokka TreeSet
seuraavan mallin mukaisesti.
class TreeSet: # metodit materiaalista def remove(self, x): # TODO if __name__ == "__main__": s = TreeSet() s.add(2) s.add(1) s.add(3) s.add(4) print(s) # [1, 2, 3, 4] s.remove(3) print(s) # [1, 2, 4] s.remove(2) print(s) # [1, 4] s.remove(1) print(s) # [4] s.remove(1) print(s) # [4]