首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
总之就是非常可爱
获赞
247
粉丝
4
关注
6
看过 TA
59
女
北京大学
2024
Java
IP属地:安徽
不知名大学
私信
关注
拉黑
举报
举报
确定要拉黑总之就是非常可爱吗?
发布(214)
评论
刷题
总之就是非常可爱
关注TA,不错过内容更新
关注
2022-05-28 21:12
北京大学 Java
题解 | #判断链表中是否有环#
/** * Definition for singly-linked list. * class ListNode { * int val; * ListNode next; * ListNode(int x) { * val = x; * next = null; &...
0
点赞
评论
收藏
分享
2022-05-28 21:04
北京大学 Java
2022-05-28
在牛客打卡33天,今天学习:刷题 3 道/代码提交 7 次
每日监督打卡
0
点赞
评论
收藏
分享
2022-05-28 21:04
北京大学 Java
题解 | #合并两个排序的链表#
/* public class ListNode { int val; ListNode next = null; ListNode(int val) { this.val = val; } }*/ public class Solution { public ListNode Merge(ListNode list1,ListNode list2) { &...
0
点赞
评论
收藏
分享
2022-05-28 20:48
北京大学 Java
题解 | #链表内指定区间反转#
import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * } */ public class Solution { /** * * @param head ListNode类 * @param m in...
0
点赞
评论
收藏
分享
2022-05-28 20:14
北京大学 Java
题解 | #反转链表#
/* public class ListNode { int val; ListNode next = null; ListNode(int val) { this.val = val; } }*/ public class Solution { public ListNode ReverseList(ListNode head) { List...
0
点赞
评论
收藏
分享
2022-05-24 18:21
北京大学 Java
2022-05-24
在牛客打卡32天,今天也很努力鸭!
每日监督打卡
0
点赞
评论
收藏
分享
2022-05-23 22:20
北京大学 Java
计算机专业怎么这么迷茫啊!!
目前大二接近尾声,说实话现在不知道怎么学。网上经常看到说计算机专业跟着老师学校学到最后工作都找不到,有过来人可以给指条路吗?目前学了c加加Java,数据结构也刷了几百道算法题了,os计组也快学完了,自学了数据库和一点Linux知识,有什么学习路线欢迎提出。感谢感谢
0
点赞
评论
收藏
分享
2022-05-23 21:02
北京大学 Java
题解 | #插入记录(一)#
insert into exam_record values(null,1001,9001,'2021-09-01 22:11:12','2021-09-01 23:01:12',90), (null,1002,9002,'2021-09-04 07:01:02',null,null);
0
点赞
评论
收藏
分享
2022-05-23 20:56
北京大学 Java
题解 | #21年8月份练题总数#
select count(distinct device_id) as did_cnt,count(question_id) as question_cnt from question_practice_detail where month(date)=8&&year(date)=2021;
0
点赞
评论
收藏
分享
2022-05-23 20:53
北京大学 Java
题解 | #提取博客URL中的用户名#
select device_id,substring_index(blog_url,'/',-1) as user_name from user_submit;
0
点赞
评论
收藏
分享
2022-05-23 20:40
北京大学 Java
题解 | #截取出年龄#
select substring_index(substring_index(profile,',',-2),',',1) as age,count(device_id) as number from user_submit group by age; //详细看substring_index的使用规则
0
点赞
评论
收藏
分享
2022-05-23 18:49
北京大学 Java
题解 | #统计每种性别的人数#
select case when profile like '%,male' then 'male' when profile like '%,female' then 'female' end gender ,count(device_id) from user_submit group by gender; //case when 语句,每个when语句中间不用加,
0
点赞
评论
收藏
分享
2022-05-23 18:41
北京大学 Java
题解 | #查看不同年龄段的用户明细#
select day(date) as day ,count(device_id) as question_cnt from question_practice_detail where year(date)=2021&&month(date)=8 group by date;
0
点赞
评论
收藏
分享
2022-05-23 18:33
北京大学 Java
题解 | #查看不同年龄段的用户明细#
select device_id,gender,'20-24岁' from user_profile where age>=20&&age<=24 union select device_id,gender,'25岁及以上' from user_profile where age>=25 union select device_id,gender,'其他' from user_profile where age is null order by device_id;
0
点赞
评论
收藏
分享
2022-05-23 18:26
北京大学 Java
题解 | #计算25岁以上和以下的用户数量#
select '25岁以下',count(id) from user_profile where age is null||age<25 union select '25岁及以上',count(id) from user_profile where age>=25; //注意select直接对一个常量,返回的就是这个常量
0
点赞
评论
收藏
分享
1
2
3
4
5
6
15
关注他的用户也关注了:
牛客网
牛客企业服务