Sha256: 5d2054d6b01ff490d323f7832a2d83167ce1b62a36750bcf648542fc08ca1fee

Contents?: true

Size: 478 Bytes

Versions: 83

Compression:

Stored size: 478 Bytes

Contents

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

    def difference(self, other):
        pass

    def union(self, other):
        pass

Version data entries

83 entries across 83 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.179 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.178 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.177 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.176 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.175 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.174 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.173 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.172 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.171 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.170 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.169 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.167 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.166 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.165 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.164 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.163 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.162 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.161 tracks/python/exercises/custom-set/custom_set.py
trackler-2.2.1.160 tracks/python/exercises/custom-set/custom_set.py