Sha256: a420166ceeadabbfff7c64579ba8a6ae3af8755f167e7ad8422f3d15c1a7987c
Contents?: true
Size: 295 Bytes
Versions: 71
Compression:
Stored size: 295 Bytes
Contents
class Point(object): def __init__(self, x, y): self.x = None self.y = None def __eq__(self, other): return self.x == other.x and self.y == other.y class WordSearch(object): def __init__(self, puzzle): pass def search(self, word): pass
Version data entries
71 entries across 71 versions & 1 rubygems