Skip to content

Commit

Permalink
'Solution'
Browse files Browse the repository at this point in the history
  • Loading branch information
CryptoQwest committed Dec 12, 2024
1 parent faa256e commit 14a162e
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1 +1,38 @@
# write your code here
class Animal:
alive = []

def __init__(self,
name: str,
health: int = 100,
hidden: bool = False
) -> None:
self.health = health
self.name = name
self.hidden = hidden
Animal.alive.append(self)

def die(self) -> None:
if self.health <= 0 and self in Animal.alive:
Animal.alive.remove(self)

def __repr__(self) -> str:
return "{{Name: {}, Health: {}, Hidden: {}}}".format(
self.name, self.health, self.hidden
)

@classmethod
def __str__(cls) -> str:
return str(cls.alive)


class Herbivore(Animal):
def hide(self) -> None:
self.hidden = not self.hidden


class Carnivore(Animal):
def bite(self, animal: Herbivore) -> None:
if isinstance(animal, Herbivore) and not animal.hidden:
animal.health -= 50
if animal.health <= 0:
animal.die()

0 comments on commit 14a162e

Please sign in to comment.