Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for The Defenders by wo.tomasz
class Warrior:
def __init__(self):
self.health = 50
self.attack = 5
self.defense = 0
self.is_alive = True
def defence(self, attack_power):
if self.defense < attack_power:
self.health -= (attack_power - self.defense)
if self.health <= 0:
self.is_alive = False
return self.is_alive
class Defender(Warrior):
def __init__(self):
super().__init__()
self.health = 60
self.attack = 3
self.defense = 2
class Knight(Warrior):
def __init__(self):
super().__init__()
self.attack = 7
class Army:
def __init__(self):
self.units_list = []
def add_units(self, units_type, quantity):
for i in range(quantity):
self.units_list.append(units_type())
def fight(unit_1, unit_2):
while (True):
if not unit_2.defence(unit_1.attack):
break
if not unit_1.defence(unit_2.attack):
break
return unit_1.is_alive
class Battle:
def fight(self, army1: Army, army2: Army):
while (len(army1.units_list) > 0 and len(army2.units_list) > 0):
if (fight(army1.units_list[0], army2.units_list[0])):
del army2.units_list[0]
else:
del army1.units_list[0]
return len(army1.units_list) > 0
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
#fight tests
chuck = Warrior()
bruce = Warrior()
carl = Knight()
dave = Warrior()
mark = Warrior()
bob = Defender()
mike = Knight()
rog = Warrior()
lancelot = Defender()
assert fight(chuck, bruce) == True
assert fight(dave, carl) == False
assert chuck.is_alive == True
assert bruce.is_alive == False
assert carl.is_alive == True
assert dave.is_alive == False
assert fight(carl, mark) == False
assert carl.is_alive == False
assert fight(bob, mike) == False
assert fight(lancelot, rog) == True
#battle tests
my_army = Army()
my_army.add_units(Defender, 1)
enemy_army = Army()
enemy_army.add_units(Warrior, 2)
army_3 = Army()
army_3.add_units(Warrior, 1)
army_3.add_units(Defender, 1)
army_4 = Army()
army_4.add_units(Warrior, 2)
battle = Battle()
assert battle.fight(my_army, enemy_army) == False
assert battle.fight(army_3, army_4) == True
print("Coding complete? Let's try tests!")
April 13, 2021