Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Building Base by gmixo
# migrated from python 2.7
class Building:
def __init__(self, south, west, width_WE, width_NS, height=10):
self.south = south
self.west = west
self.width_WE = width_WE
self.width_NS = width_NS
self.height = height
def corners(self):
return {
'north-east': [self.south + self.width_NS, self.west + self.width_WE],
'south-east': [self.south, self.west + self.width_WE],
'south-west': [self.south, self.west],
'north-west': [self.south + self.width_NS, self.west]}
def area(self):
return self.width_WE * self.width_NS
def volume(self):
return self.area() * self.height
def __repr__(self):
return "Building(%(s)s, %(w)s, %(we)s, %(ns)s, %(h)s)" % {
's': self.south,
'w': self.west,
'we': self.width_WE,
'ns': self.width_NS,
'h': self.height,
}
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
def json_dict(d):
return dict((k, list(v)) for k, v in list(d.items()))
b = Building(1, 2, 2, 3)
b2 = Building(1, 2, 2, 3, 5)
assert json_dict(b.corners()) == {'north-east': [4, 4], 'south-east': [1, 4],
'south-west': [1, 2], 'north-west': [4, 2]}, "Corners"
assert b.area() == 6, "Area"
assert b.volume() == 60, "Volume"
assert b2.volume() == 30, "Volume2"
assert str(b) == "Building(1, 2, 2, 3, 10)", "String"
Jan. 22, 2015
Comments: