跪求要一个offer
跪求要一个offer
全部文章
分类
题解(178)
归档
标签
去牛客网
登录
/
注册
跪求要一个offer的博客
TA的专栏
12篇文章
0人订阅
算法和编程题解
12篇文章
270人学习
全部文章
(共183篇)
题解 | #统计作答次数#
来自专栏
select count(start_time) as total_pv, COUNT(submit_time) as complete_pv, #去除未完成的试卷 COUNT(distinct exam_id and score is not null) as comple...
Mysql
2022-01-14
0
270
题解 | #删除索引#
#sql中删除索引的语法 drop index uniq_idx_exam_id on examination_info; drop index full_idx_tag on examination_info;
Mysql
2022-01-14
0
309
题解 | #修改表#
#sql修改 表结构的语法 alter table user_info add school varchar(15) after level; alter table user_info change job profession varchar(10); alter table user...
Mysql
2022-01-13
0
214
题解 | #查看不同年龄段的用户明细#
#sql中case when end的用法 select device_id,gender, case when age>=25 then '25岁及以上' when age>=20 then '20-24岁' else '其他' ...
Mysql
2022-01-12
0
269
题解 | #跳台阶扩展问题#
public: int jumpFloorII(int number) { //使用递归的暴力解法 int shu[20]={0}; shu[0]=1; shu[1]=1; shu[2]=2; i...
C++
2022-01-11
0
252
题解 | #二叉搜索树的第k个节点#
* struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} * ...
C++
2022-01-11
0
313
题解 | #删除记录(二)#
delete from exam_record where submit_time is null #sql中使用timestampdiff函数获取时间差 or timestampdiff(minute,start_time,submit_time)<5 order b...
Mysql
2022-01-10
0
228
题解 | #计算用户8月每天的练题数量#
#使用sql中的substring_index字符串截取函数 SELECT SUBSTRING_INDEX(date,"-",-1) as day, count(question_id) as question_cnt from question_practice_detail where ...
Mysql
2022-01-09
0
277
题解 | #记录点赞用户#
public class Main { public static void main(String[] args) { LikeRecorder recorder = new LikeRecorderImpl(); Scanner scanner = n...
Java
2022-01-07
0
306
题解 | #友元全局函数#
using namespace std; class Person { // write your code here...... friend void showAge(Person &); public: Person(int age...
C++
2022-01-06
0
343
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页