1 Star 0 Fork 0

张志光/Leetcode-js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
1184.公交站间的距离.html 1002 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhangzhiguang123 提交于 2019-09-25 20:49 . 日常更新
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script>
var distanceBetweenBusStops = function(distance, start, destination) {
if(start>destination){
[start,destination] = [destination,start];
} //如果开始站的位置大于结束站的位置下标,为了方便计算,交换两站下标。
let arr0 = distance.slice(start,destination); //剪切两站间的每站距离数组
let disOne = arr0.reduce((a,b)=>a+b); //计算两点间的距离;
let disTwo = distance.reduce((a,b)=>a+b)-disOne;//总距离减去disOne等于向反方向行驶的距离
return Math.min(disOne,disTwo);//取两距离最小
};
console.log(distanceBetweenBusStops([7,2,3,4],0,1));
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/guangzz/Leetcode-js.git
git@gitee.com:guangzz/Leetcode-js.git
guangzz
Leetcode-js
Leetcode-js
master

搜索帮助