文件名称:longest-consecutive-sequence
文件大小:3.52MB
文件格式:ZIP
更新时间:2024-04-15 15:12:09
JavaScript
最长连续序列 描述 给定一个未排序的整数数组,请找出最长的连续元素序列的长度。 好吧,假设该任务仅与步长等于1的序列有关。 例如: 给定exampleArray = [100, 4, 200, 1, 3, 2] 100,4,200,1,3,2 [100, 4, 200, 1, 3, 2] 。 最长的连续元素序列是[1, 2, 3, 4] 。 longestConsecutiveLength(exampleArray)返回最长序列的长度4 。 细心! 您的算法应具有O(n)复杂度。 在src/index.js编写代码 在本地运行测试npm test
【文件预览】:
longest-consecutive-sequence-master
----test.js(10.36MB)
----package.json(614B)
----LICENSE(1KB)
----src()
--------index.js(86B)
----.gitignore(578B)
----README.md(589B)
----yarn.lock(6KB)