This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
The Array Hotel - Instructions | |
In this exercise, we'll be using an array to manage the occupancy | |
of a hotel called The Array Hotel. | |
Each room in the hotel will be represented with a "vacant" | |
or "occupied" string in the array. The index of the element | |
is the room number. For example, for a hotel with an | |
occupancy array of ["occupied", "vacant", "occupied", "vacant"], |