Skip to content

Commit

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

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

Animal.alive.append(self)

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

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


class Carnivore(Animal):
@staticmethod
def bite(beast: Herbivore) -> None:
if not beast.hidden and isinstance(beast, Herbivore):
beast.health = beast.health - 50
if beast.health <= 0:
Animal.alive.remove(beast)

0 comments on commit ef481d7

Please sign in to comment.