1 Star 0 Fork 0

laineyling/day1

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
3.demo3.html 934 Bytes
一键复制 编辑 原始数据 按行查看 历史
laineyling 提交于 2022-10-10 21:21 . 10.10封装函数
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!-- 题目3: 实现数组的去重, 传入需要去重的纯数字数组,将数组去重,返回数组元素不重复的数组
函数名:noRepeatArray
参数:需要去重的纯数字数组
返回值:去重后的数组
例如:noRepeatArray([3,3,1,5,1,2]) 返回 [3, 1, 5, 2]
-->
</body>
</html>
<script>
function noRepeatArray(arr){
let result = [],
len = arr.length;
for(let i = 0; i < len; i++){
for(let j = i + 1; j < len; j++){
if(arr[i] === arr[j]){
j = ++i;
}
}
result.push(arr[i]);
}
return result;
}
console.log(noRepeatArray([3,3,1,5,1,2]));
</script>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/laineyling/day1.git
[email protected]:laineyling/day1.git
laineyling
day1
day1
master

搜索帮助