Skip to content

Commit 6c75be4

Browse files
authored
Update 1603-design-parking-system.js
Updating if conditions.
1 parent e035151 commit 6c75be4

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

javascript/1603-design-parking-system.js

+7-4
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,26 @@ class ParkingSystem {
1818
* @return {boolean}
1919
*/
2020
addCar(carType) {
21-
if(carType === 1 && this.isBigRemaining > 0) {
21+
const isBigCarAvailable = (carType === 1 && this.isBigRemaining > 0);
22+
if(isBigCarAvailable) {
2223
this.isBigRemaining -= 1;
2324
return true;
2425
}
25-
if(carType === 2 && this.isMediumRemaining > 0) {
26+
const isMediumCarAvailable = (carType === 2 && this.isMediumRemaining > 0);
27+
if(isMediumCarAvailable) {
2628
this.isMediumRemaining -= 1;
2729
return true;
2830
}
29-
if(carType === 3 && this.isSmallRemaining > 0) {
31+
const isSmallCarAvailable = (carType === 3 && this.isSmallRemaining > 0);
32+
if(isSmallCarAvailable) {
3033
this.isSmallRemaining -= 1;
3134
return true;
3235
}
3336
return false;
3437
}
35-
}
3638
}
3739

40+
3841
/**
3942
* Your ParkingSystem object will be instantiated and called as such:
4043
* var obj = new ParkingSystem(big, medium, small)

0 commit comments

Comments
 (0)