mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-16 07:00:53 -04:00
Co-authored-by: Kolade Chris <65571316+Ksound22@users.noreply.github.com> Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
1.7 KiB
1.7 KiB
id, title, challengeType, dashedName
| id | title | challengeType | dashedName |
|---|---|---|---|
| 6821ebe4237de8297eaee794 | JavaScript Challenge 18: Second Best | 28 | javascript-challenge-18 |
--description--
Given an array of integers representing the price of different laptops, and an integer representing your budget, return:
- The second most expensive laptop if it is within your budget, or
- The most expensive laptop that is within your budget, or
0if no laptops are within your budget.
- Duplicate prices should be ignored.
--hints--
getLaptopCost([1500, 2000, 1800, 1400], 1900) should return 1800
assert.equal(getLaptopCost([1500, 2000, 1800, 1400], 1900), 1800);
getLaptopCost([1500, 2000, 2000, 1800, 1400], 1900) should return 1800
assert.equal(getLaptopCost([1500, 2000, 2000, 1800, 1400], 1900), 1800);
getLaptopCost([2099, 1599, 1899, 1499], 2200) should return 1899
assert.equal(getLaptopCost([2099, 1599, 1899, 1499], 2200), 1899);
getLaptopCost([2099, 1599, 1899, 1499], 1000) should return 0
assert.equal(getLaptopCost([2099, 1599, 1899, 1499], 1000), 0);
getLaptopCost([1200, 1500, 1600, 1800, 1400, 2000], 1450) should return 1400
assert.equal(getLaptopCost([1200, 1500, 1600, 1800, 1400, 2000], 1450), 1400);
--seed--
--seed-contents--
function getLaptopCost(laptops, budget) {
return laptops;
}
--solutions--
function getLaptopCost(laptops, budget) {
laptops = [...new Set(laptops)].sort((a, b) => b - a);
if (budget >= laptops[1]) return laptops[1];
if (budget < laptops[laptops.length - 1]) return 0;
for (let i = 2; i < laptops.length; i++) {
if (budget >= laptops[i]) return laptops[i];
}
}