Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
MiskoRuslan committed Oct 9, 2023
1 parent b991c34 commit e850889
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1 +1,30 @@
# write your code here
class Animal:
alive = []

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

@staticmethod
def check_alive_animals() -> None:
Animal.alive = [animal for animal in Animal.alive if animal.health > 0]

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


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


class Carnivore(Animal):
def bite(self, herbivore: Herbivore) -> None:
if isinstance(herbivore, Herbivore) is False:
return
if herbivore.hidden is True or herbivore.health < 1:
return
herbivore.health -= 50
self.check_alive_animals()

0 comments on commit e850889

Please sign in to comment.