轻飘飘过wind
轻飘飘过wind
全部文章
分类
归档
标签
去牛客网
登录
/
注册
轻飘飘过wind的博客
全部文章
(共29篇)
题解 | #计数器#
闭包 箭头函数 const closure = () => { // 补全代码 let timer = ...
HTML/CSS/JavaScript
2022-09-02
4
286
题解 | #新数组#
filter 高效一行代码 const _delete = (array,index) => { // 补全代码 if (i...
HTML/CSS/JavaScript
2022-09-02
3
233
题解 | #数组排序#
封装ul的render函数 <!DOCTYPE html> <html lang="en"> <head> &n...
HTML/CSS/JavaScript
2022-09-02
6
295
题解 | #无重复数组#
1. 时间复杂度为O(n) 2. 生成range(start, end)的数组 3. 随机数生成函数 4. 将随机数选中的位置与数组末尾交换,提高效率 。交换操作时间复杂度为O(1) const&nbs...
HTML/CSS/JavaScript
HTML/CSS/JavaScript
2022-09-02
1
287
题解 | #简洁优雅高效O(n)#
1. 时间复杂度为O(n) 2. 生成range(start, end)的数组 3. 随机数生成函数 4. 将随机数选中的位置与数组末尾交换,提高效率 。交换操作时间复杂度为O(1) [arr[arr.length - 1 - j...
HTML/CSS/JavaScript
2022-09-02
1
249
题解 | #简洁优雅高效O(n)#
1. 主要是区分符号, 先转化为正数再处理 2. 倒序遍历,每3个字符加个逗号,到首位字符的时候不增加逗号 function _comma(number) { // 补全代码 const sign&nb...
HTML/CSS/JavaScript
2022-09-02
1
232
题解 | #子查询,cust_id分组#
在子查询结束之后,再对cust_id进行分组计算 select o.cust_id, sum(( select sum(oi.item_price * oi.quantity) &n...
2022-08-31
1
212
题解 | #精简SQL#
对3个表进行内连接 select distinct(ct.cust_email) from Customers as ct inner join Orders as o on ct.cust_id...
Mysql
2022-08-31
3
492
题解 | #返回购买价格为 10 美元或以上产品的顾客列表#
使用内连接, 筛选条件放到on里进行判断 select o.cust_id from Orders as o inner join OrderItems as ot on o.order_num&nb...
Mysql
2022-08-31
10
323
首页
上一页
1
2
3
下一页
末页