Estacionamento
Crie uma classe ParkingLot que gerencia o estacionamento de carros. Esta classe tem várias funcionalidades: deve ser capaz de estacionar um carro, liberar um carro e informar o número de vagas restantes.
Crie uma classe Car que representa um carro que pode ser estacionado no estacionamento.
Você precisa implementar o seguinte:
Uma classe
Car, com um atributocar_id: deve ser fornecido quando o objeto carro for criado. Todas as operações seguintes devem levar em conta ocar_id.Uma classe
ParkingLotcom:total_spotsattribute: the total number of parking spots in the parking lot, which should be provided when the parking lot object is created.park(car)method: parks aCarobject in the parking lot. If the parking lot is full, it should printParking lot is full.release(car)method: releases aCarfrom the parking lot. If the car is not in the parking lot, it should printCar not found in the parking lot.spots_left()method: returns an integer representing the number of available parking spots in the parking lot.
Entrada | Saída |
|---|---|
| 2 |
| 1 |
Constraints
Time limit: 2 seconds
Memory limit: 512 MB
Output limit: 1 MB