This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
hotels =["CityLights";"SeaView";"MarketPlace";"ResortSpa";"Nightingale";"Clubadub";"SkylineView";"MarinaBay";"ComfortFirst";"VillageValley"];
ratings = [7.2;8.7;6.5;9.3;4.3;6.9;8.8;5.9;7.4;9.1];
cutoff = 8;
good_correct = ["SeaView";"ResortSpa";"SkylineView";"VillageValley"];
assert(isequal(find_good_hotels(hotels,ratings,cutoff),good_correct))
a =
10×2 table
<strong>hotels</strong> <strong>ratings</strong>
<strong>_______________</strong> <strong>_______</strong>
"CityLights" 7.2
"SeaView" 8.7
"MarketPlace" 6.5
"ResortSpa" 9.3
"Nightingale" 4.3
"Clubadub" 6.9
"SkylineView" 8.8
"MarinaBay" 5.9
"ComfortFirst" 7.4
"VillageValley" 9.1
|
2 | Pass |
hotels = ["ComfortFirst";"CityLights";"Clubadub";"Nightingale";"MarketPlace";"MarinaBay";"ResortSpa";"VillageValley";"SkylineView";"SeaView"];
ratings = [8.8000;7.2000;9.3000;8.7000;6.9000;7.4000;6.5000;4.3000;5.9000;9.1000];
cutoff = 9;
good_correct = ["Clubadub";"SeaView"];
assert(isequal(find_good_hotels(hotels,ratings,cutoff),good_correct))
a =
10×2 table
<strong>hotels</strong> <strong>ratings</strong>
<strong>_______________</strong> <strong>_______</strong>
"ComfortFirst" 8.8
"CityLights" 7.2
"Clubadub" 9.3
"Nightingale" 8.7
"MarketPlace" 6.9
"MarinaBay" 7.4
"ResortSpa" 6.5
"VillageValley" 4.3
"SkylineView" 5.9
"SeaView" 9.1
|
3 | Pass |
hotels = ["Nightingale";"VillageValley";"SeaView";"CityLights";"ResortSpa";"ComfortFirst";"SkylineView";"Clubadub";"MarinaBay";"MarketPlace"];
ratings = [7.2000;8.7000;6.5000;7.4000;9.3000;9.1000;6.9000;8.8000;5.9000;4.3000];
cutoff = 7;
good_correct = ["Nightingale";"VillageValley";"CityLights";"ResortSpa";"ComfortFirst";"Clubadub"];
assert(isequal(find_good_hotels(hotels,ratings,cutoff),good_correct))
a =
10×2 table
<strong>hotels</strong> <strong>ratings</strong>
<strong>_______________</strong> <strong>_______</strong>
"Nightingale" 7.2
"VillageValley" 8.7
"SeaView" 6.5
"CityLights" 7.4
"ResortSpa" 9.3
"ComfortFirst" 9.1
"SkylineView" 6.9
"Clubadub" 8.8
"MarinaBay" 5.9
"MarketPlace" 4.3
|
605 Solvers
Project Euler: Problem 6, Natural numbers, squares and sums.
1018 Solvers
Arrange vector in ascending order
624 Solvers
Switch matrix to a column vector
259 Solvers
302 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!