2018-01-19 05:36:08 -06:00
|
|
|
class CustomSet(object):
|
|
|
|
|
def __init__(self, elements=[]):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def isempty(self):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def __contains__(self, element):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def issubset(self, other):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def isdisjoint(self, other):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def add(self, element):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def intersection(self, other):
|
|
|
|
|
pass
|
|
|
|
|
|
2018-11-13 23:09:36 +05:30
|
|
|
def __sub__(self, other):
|
2018-01-19 05:36:08 -06:00
|
|
|
pass
|
|
|
|
|
|
2018-11-13 23:09:36 +05:30
|
|
|
def __add__(self, other):
|
2018-01-19 05:36:08 -06:00
|
|
|
pass
|