agul
agul
全部文章
分类
C#(2)
jquery(1)
Node(2)
php apache(2)
刷题(1)
前端杂记(1)
前端笔记(11)
前端练手项目(4)
未归档(1)
物联网(4)
网络(1)
题解(42)
归档
标签
去牛客网
登录
/
注册
agul的博客
全部文章
(共62篇)
题解 | #删除数组最后一个元素#
// 描述 // 删除数组 arr 最后一个元素。不要直接修改数组 arr,结果返回新的数组 // 示例1 // 输入: // [1, 2, 3, 4] // 复制 // 输出: // [1, 2, 3] function truncate(arr) { return arr.slice(...
2021-06-09
20
896
题解 | #添加元素#
// 描述 // 在数组 arr 末尾添加元素 item。不要直接修改数组 arr,结果返回新的数组 // 示例1 // 输入: // [1, 2, 3, 4], 10 // 输出: // [1, 2, 3, 4, 10] function append(arr, item) { //...
2021-06-09
4
617
题解 | #移除数组中的元素#
function remove(arr, item) { for (let i = 0; i < arr.length; i++) { if (arr[i] === item) { arr.splice(i, 1) i--...
2021-06-09
0
501
题解 | #字符串字符统计#
function count(str) { let obj = {} str.split('').forEach(function (value, index) { if (value == ' ') return true i...
2021-06-06
0
541
题解 | #将字符串转换为驼峰格式#
function cssStyle2DomStyle(sName) { let arr = sName.split('-') let str = '' for (item of arr) { if (item != '') str +=...
2021-06-06
0
425
题解 | #颜色字符串转换#
function rgb2hex(sRGB) { let str = '#' var temp sRGB.slice(4, -1).split(',').forEach((value) => { temp = parseInt(value.trim())...
2021-06-03
0
432
题解 | #获取字符串的长度#
function strLength(s, bUnicode255For1) { if(bUnicode255For1){ return s.length } let sum = 0 for(let i = 0; i < s.length; i+...
2021-06-02
0
506
题解 | #时间格式化输出#
function formatDate(date, format) { let addZero = function (data) { if (data < 10) { return '0' + data } re...
2021-06-02
63
1783
题解 | #斐波那契数列#
function fibonacci(n) { if (n <= 2) return 1 let f1 = 1, f2 = 1, temp for (let i = 2; i < n; i++) { temp = f1 ...
2021-06-02
0
530
题解 | #获取 url 参数#
let str = sUrl.split('?')[1].split('#')[0] let arr1 = str.split('&') let obj = {} for (let i of arr1) { obj[i.split('=')[0]] =...
2021-06-02
1
543
首页
上一页
1
2
3
4
5
6
7
下一页
末页