- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 Codewars 上解决这个 Kata:https://www.codewars.com/kata/largest-difference-in-increasing-indexes/train/javascript
Consider all of the pairs of numbers in the array where the first one is less than or equal to the second one.
From these, find a pair where their positions in the array are farthest apart.
Return the difference between the indexes of the two array elements in this pair.
这是我所拥有的,但无法弄清楚为什么它不正确。
var largestDifference = function(data) {
arr = [];
for (var i = 0; i < data.length-1; i++) {
for (var j = data.length-1; j>i; j--) {
if (data[i] <= data[j]) {
arr.push(i)
}
}
}
ans = Math.max(...arr)- Math.min(...arr);
return ans
};
最佳答案
您不需要将 i
插入 ans
数组。您需要推送 j
和 i
的区别,即 j - i
var largestDifference = function(data) {
let res = [];
for(let i = 0; i < data.length; i++){
for(let j = i + 1; j < data.length; j++){
if(data[i] <= data[j]){
res.push(j - i);
}
}
}
return res.length ? Math.max(...res) : 0
};
console.log(largestDifference([9,4,1,10,3,4,0,-1,-2])) // 4
console.log(largestDifference([3, 2, 1])) // 0
关于javascript - Codewars Kata 的问题 - 增加数组的最大差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59052986/
我大约 2 周前才开始学习编码,遇到了以下问题。我最初将代码编写为双嵌套循环,但不出所料地超时了。我重新编译了我的代码,以便(我认为)具有 O(n) 的渐近运行时间而不是 O(n^2)。我正在寻找使我
问题如下:超市的自助收银台前排起了长队。您的任务是编写一个函数来计算所有客户结帐所需的总时间! 输入:客户:代表队列的正整数数组。每个整数代表一个客户,其值是他们结账所需的时间。n:正整数,收银台数量
我正在尝试解决 codewars 上的 6kyu 问题,并且偶然发现了一个恼人的错误,但我无法找到其根源。任务的快速解释:“给定两个数组 a 和 b 编写一个函数 comp(a, b) 来检查这两个数
所以我决定去 codewars 温习一下 java,我有这个问题需要解决: 给你一个包含整数的数组(长度至少为 3,但可能非常大)。该数组要么完全由奇数整数组成,要么完全由除单个整数 N 之外的偶数整
这个问题已经有答案了: Regex for password must contain at least eight characters, at least one number and both
CodeWars 问题: Create a function named divisors that takes an integer and returns anarray with all of
我被困在 Codewars Kata 中,我希望有人能帮助我(不要破坏解决方案)。事实上,问题是我没有完全理解它应该如何工作,我明白了练习的想法,但事情有点困惑,尤其是在示例测试中。 以下是说明: T
我被下面的任务卡住了,花了大约 3 个小时才弄明白。 任务描述:一个人有一辆值(value) 2000 美元的旧车。他看到一辆值(value) 8000 美元的二手车。他想保留他的旧车,直到他能买到二
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
接下来的挑战是: At a job interview, you are challenged to write an algorithm to check if a given string, s,
问题来了: 新的《复仇者联盟》电影刚刚上映!电影院售票处人山人海,排起了长队。他们每个人都有一张 100、50 或 25 美元的钞票。 “复仇者联盟”门票 25 美元。 Vasya 目前是一名文员。他
问题是: "My friend John and I are members of the "Fat to Fit Club (FFC)". Johnis worried because each m
关闭。这个问题需要details or clarity .它目前不接受答案。 想改善这个问题吗?通过 editing this post 添加详细信息并澄清问题. 去年关闭。 Improve this
希望每个人都有美好的一天。 这是我在 Stackoverflow 上发表的第一篇文章! 我刚刚完成了 Codeacademy 上的 javascript 类(class),并且也阅读了几本相关书籍。现
This Codewars Challenge要求您 Choose exactly one element from the sequence and replace it with another
我正在解决以下代码 war 问题。问题如下所示: Instructions Write a function capitals that takes a single string (word) as
谁能找出这段代码有什么问题吗?我在 CodeWars 上运行代码并通过了除一个之外的所有测试...遗憾的是它没有显示该特定测试的输入内容,因此很难弄清楚。 以下是挑战说明: 新的《复仇者联盟》电影刚刚
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 6 年前。 Improve this ques
尝试解决this codewars challenge : Your job is to fix the parentheses so that all opening and closing par
简介 问题在 Link to challenge for best instructions 上有解释 据我所知,如果左侧的元素大于0。 即[2, -4, 6, -6] => [-6, -4, 6,
我是一名优秀的程序员,十分优秀!