Skip to content

Commit e035151

Browse files
authored
Update 1603-design-parking-system.js
Renaming big, medium, and small variables with 'is' prefix.
1 parent f84ed0a commit e035151

File tree

1 file changed

+13
-19
lines changed

1 file changed

+13
-19
lines changed

javascript/1603-design-parking-system.js

+13-19
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
*/
88
class ParkingSystem {
99
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;
1313
}
1414

1515
/**
@@ -18,27 +18,21 @@ class ParkingSystem {
1818
* @return {boolean}
1919
*/
2020
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;
2524
}
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;
3128
}
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;
3732
}
38-
39-
// If no suitable parking space is available for the given carType
4033
return false;
4134
}
35+
}
4236
}
4337

4438
/**

0 commit comments

Comments
 (0)