7
7
*/
8
8
class ParkingSystem {
9
9
constructor ( big , medium , small ) {
10
- this . bigRemaining = big ;
11
- this . mediumRemaining = medium ;
12
- this . smallRemaining = small ;
10
+ this . isBigRemaining = big ;
11
+ this . isMediumRemaining = medium ;
12
+ this . isSmallRemaining = small ;
13
13
}
14
14
15
15
/**
@@ -18,27 +18,21 @@ class ParkingSystem {
18
18
* @return {boolean }
19
19
*/
20
20
addCar ( carType ) {
21
- // If carType is 1 (big) and there are available big parking spaces
22
- if ( carType === 1 && this . bigRemaining > 0 ) {
23
- this . bigRemaining -= 1 ;
24
- return true ;
21
+ if ( carType === 1 && this . isBigRemaining > 0 ) {
22
+ this . isBigRemaining -= 1 ;
23
+ return true ;
25
24
}
26
-
27
- // If carType is 2 (medium) and there are available medium parking spaces
28
- if ( carType === 2 && this . mediumRemaining > 0 ) {
29
- this . mediumRemaining -= 1 ;
30
- return true ;
25
+ if ( carType === 2 && this . isMediumRemaining > 0 ) {
26
+ this . isMediumRemaining -= 1 ;
27
+ return true ;
31
28
}
32
-
33
- // If carType is 3 (small) and there are available small parking spaces
34
- if ( carType === 3 && this . smallRemaining > 0 ) {
35
- this . smallRemaining -= 1 ;
36
- return true ;
29
+ if ( carType === 3 && this . isSmallRemaining > 0 ) {
30
+ this . isSmallRemaining -= 1 ;
31
+ return true ;
37
32
}
38
-
39
- // If no suitable parking space is available for the given carType
40
33
return false ;
41
34
}
35
+ }
42
36
}
43
37
44
38
/**
0 commit comments