--- id: 5664820f61c48e80c9fa476c title: Golf Code challengeType: 1 videoUrl: '' localeTitle: 高尔夫码 --- ## Description
高尔夫比赛中,每个洞都具有par意义,即高尔夫球手为了将球沉入洞中以完成比赛所期望的平均strokes次数。根据你的strokes高出或低于par的距离,有一个不同的昵称。您的函数将通过parstrokes参数。根据此表返回正确的字符串,该表按优先级顺序列出笔划;顶部(最高)到底部(最低):
笔画返回
1 “一杆进洞!”
<= par - 2 “鹰”
par - 1 “小鸟”
平价 “相提并论”
par + 1 “柏忌”
par + 2 “双柏忌”
> = par + 3 “回家!”
parstrokes将始终为数字和正数。为方便起见,我们添加了所有名称的数组。
## Instructions
## Tests
```yml tests: - text: 'golfScore(4, 1)应该返回“Hole-in-one!”' testString: assert(golfScore(4, 1) === "Hole-in-one!"); - text: 'golfScore(4, 2)应该返回“Eagle”' testString: assert(golfScore(4, 2) === "Eagle"); - text: 'golfScore(5, 2)应该返回“Eagle”' testString: assert(golfScore(5, 2) === "Eagle"); - text: 'golfScore(4, 3)应该返回“Birdie”' testString: assert(golfScore(4, 3) === "Birdie"); - text: 'golfScore(4, 4)应该返回“Par”' testString: assert(golfScore(4, 4) === "Par"); - text: 'golfScore(1, 1)应该返回“Hole-in-one!”' testString: assert(golfScore(1, 1) === "Hole-in-one!"); - text: 'golfScore(5, 5)应该返回“Par”' testString: assert(golfScore(5, 5) === "Par"); - text: 'golfScore(4, 5)应该返回“Bogey”' testString: assert(golfScore(4, 5) === "Bogey"); - text: 'golfScore(4, 6)应该返回“Double Bogey”' testString: assert(golfScore(4, 6) === "Double Bogey"); - text: 'golfScore(4, 7)应该返回“Go Home!”' testString: assert(golfScore(4, 7) === "Go Home!"); - text: 'golfScore(5, 9)应该返回“Go Home!”' testString: assert(golfScore(5, 9) === "Go Home!"); ```
## Challenge Seed
```js var names = ["Hole-in-one!", "Eagle", "Birdie", "Par", "Bogey", "Double Bogey", "Go Home!"]; function golfScore(par, strokes) { // Only change code below this line return "Change Me"; // Only change code above this line } // Change these values to test golfScore(5, 4); ```
## Solution
```js // solution required ```