首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
恶魔之爱
获赞
1
粉丝
0
关注
4
看过 TA
2
男
济南大学泉城学院
2021
Java
IP属地:四川
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑恶魔之爱吗?
发布(87)
评论
刷题
收藏
恶魔之爱
关注TA,不错过内容更新
关注
2024-02-05 17:24
济南大学泉城学院 Java
2024-02-05
在牛客打卡8天,今天学习:刷题 20 道/代码提交 38 次
0
点赞
评论
收藏
分享
2024-02-05 17:22
济南大学泉城学院 Java
题解 | #用where过滤空值练习#
select device_id, gender, age, university from user_profile where age is not null;
0
点赞
评论
收藏
分享
2024-02-05 17:20
济南大学泉城学院 Java
题解 | #查找除复旦大学的用户信息#
select device_id, gender, age, university from user_profile where university != '复旦大学';
0
点赞
评论
收藏
分享
2024-02-05 17:19
济南大学泉城学院 Java
题解 | #查找某个年龄段的用户信息#
select device_id, gender, age from user_profile where age >= 20 and age <= 23;
0
点赞
评论
收藏
分享
2024-02-05 17:17
济南大学泉城学院 Java
题解 | #查找年龄大于24岁的用户信息#
select device_id, gender, age, university from user_profile where age > 24;
0
点赞
评论
收藏
分享
2024-02-05 17:15
济南大学泉城学院 Java
题解 | #查找学校是北大的学生信息#
select device_id, university from user_profile where university = '北京大学';
0
点赞
评论
收藏
分享
2024-02-05 17:14
济南大学泉城学院 Java
题解 | #将查询后的列重新命名#
select device_id as user_infos_example from user_profile limit 2;
0
点赞
评论
收藏
分享
2024-02-05 17:12
济南大学泉城学院 Java
题解 | #查询结果限制返回行数#
select device_id from user_profile limit 2;
0
点赞
评论
收藏
分享
2024-02-05 17:11
济南大学泉城学院 Java
题解 | #查询结果去重#
select distinct university from user_profile;
0
点赞
评论
收藏
分享
2024-02-05 17:10
济南大学泉城学院 Java
题解 | #查询多列#
select device_id, gender, age, university from user_profile;
0
点赞
评论
收藏
分享
2024-02-05 17:08
济南大学泉城学院 Java
题解 | #查询所有列#
select * from user_profile;
0
点赞
评论
收藏
分享
2024-02-05 16:18
济南大学泉城学院 Java
题解 | #买卖股票的最好时机(二)#
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 计算最大收益 * @param prices int整型一维数组 股票每一天的价格 * @return int整型 */ public int maxProfit (int[] prices) { // write code here // 股票总收入 int sum = 0; for (int i = 0; i < prices.length - 1; i ++) { sum += prices[i + 1...
0
点赞
评论
收藏
分享
2024-02-05 16:11
济南大学泉城学院 Java
题解 | #链表的奇偶重排#
import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * public ListNode(int val) { * this.val = val; * } * } */ public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 * @return ListNode类 */ public ListNode oddEvenList (ListNode he...
0
点赞
评论
收藏
分享
2024-02-04 10:41
济南大学泉城学院 Java
题解 | #二进制中1的个数#
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @return int整型 */ public int NumberOf1 (int n) { // write code here // 定一个长度为32的数组 int[] arr = new int[32]; int temp = Math.abs(n); int index = arr.length - 1; while (temp > 0) { arr[index...
0
点赞
评论
收藏
分享
2024-02-04 09:51
济南大学泉城学院 Java
题解 | #最小的K个数#
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param input int整型一维数组 * @param k int整型 * @return int整型ArrayList */ public ArrayList<Integer> GetLeastNumbers_Solution (int[] input, int k) { // write code here // 结果集 ArrayList<Integer> result =...
0
点赞
评论
收藏
分享
1
2
3
4
5
6
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务