Skip to content

Commit

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

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

def reduce_health(self, amount) -> None:
self.health -= amount
if self.health <= 0:
Animal.alive.remove(self)

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: int) -> None:
if isinstance(herbivore, Herbivore) and not herbivore.hidden:
herbivore.reduce_health(50)

0 comments on commit d9eabde

Please sign in to comment.