Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 48 additions & 4 deletions app/main.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,52 @@
class Car:
# write your code here
pass
def __init__(
self,
comfort_class: int,
clean_mark: int,
brand: str,
) -> None:
self.comfort_class = comfort_class
self.clean_mark = clean_mark
self.brand = brand


class CarWashStation:
# write your code here
pass
def __init__(
self,
distance_from_city_center: float,
clean_power: int,
average_rating: float,
count_of_ratings: int,
) -> None:
self.distance_from_city_center = distance_from_city_center
self.clean_power = clean_power
self.average_rating = average_rating
self.count_of_ratings = count_of_ratings

def serve_cars(self, cars: list) -> float:
income = 0
for car in cars:
if self.clean_power > car.clean_mark:
cost = self.calculate_washing_price(car)
income += cost
self.wash_single_car(car)
return round(income, 1)

def calculate_washing_price(self, car: Car) -> float:
return (
car.comfort_class
* (self.clean_power - car.clean_mark)
* self.average_rating
/ self.distance_from_city_center
)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to the task description, this method should return the calculated cost rounded to one decimal place. The current implementation returns the unrounded value.


def wash_single_car(self, car: Car) -> None:
if self.clean_power > car.clean_mark:
car.clean_mark = self.clean_power

def rate_service(self, rating: float) -> None:
avg_new = (self.average_rating * self.count_of_ratings + rating) / (
self.count_of_ratings + 1
)
self.average_rating = round(avg_new, 1)
self.count_of_ratings += 1