Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonRzz committed Jan 8, 2025
1 parent 34368d1 commit f1e8063
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions app/main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
# write your imports here
from app.cinema.bar import CinemaBar
from app.cinema.hall import CinemaHall
from app.people.customer import Customer
from app.people.cinema_staff import Cleaner


def cinema_visit(customers: list, hall_number: int, cleaner: str, movie: str):
# write you code here
pass
def cinema_visit(
customers: list,
hall_number: int,
cleaner: str,
movie: str
) -> None:
customer_instances = [
Customer(customer_name) for customer_name in customers
]
cinema_hall = CinemaHall(hall_number)
cleaner_name = Cleaner(cleaner)

for person in customer_instances:
person.CinemaBar
cinema_hall.movie_session
cleaner_name.clean_hall

0 comments on commit f1e8063

Please sign in to comment.