程昱同学
程昱同学
全部文章
分类
归档
标签
去牛客网
登录
/
注册
程昱同学的博客
全部文章
(共127篇)
题解 | #计算25岁以上和以下的用户数量#
select case when age<25 or age is null then '25岁以下' when age>=25 then '25岁及以上' end age_cut,count(*)number from user_profile group by age_cut
2023-02-28
0
286
题解 | #查找山东大学或者性别为男生的信息#
select device_id,gender,age,gpa from user_profile where university='山东大学' union all select device_id,gender,age,gpa from user_profile where gender='ma...
2023-02-28
0
249
题解 | #买卖股票的最好时机(三)#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 两次交易所能获得的最大收益 * @param prices int整型vector 股票每一天的价格 * @re...
2023-02-14
0
373
题解 | #打家劫舍(一)#
#include <algorithm> #include <vector> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * ...
2023-02-14
0
266
题解 | #最长的括号子串#
#include <vector> class Solution { public: /** * * @param s string字符串 * @return(756076230) int整型 */ int longestVal...
2023-02-14
0
290
题解 | #正则表达式匹配#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param str string字符串 * @param pattern string字符串...
2023-02-14
0
309
题解 | #顺时针旋转矩阵#
class Solution { public: vector<vector<int> > rotateMatrix(vector<vector<int> > mat, int n) { if(mat.size()==0) re...
2023-02-14
0
291
题解 | #螺旋矩阵#
#include <vector> class Solution { public: int m; int n; vector<int> ans; vector<vector<int> > matrix; voi...
2023-02-14
0
281
题解 | #分糖果问题#
#include <vector> class Solution { public: /** * pick candy * @param arr int整型vector the array * @return(756076230) int整型 ...
2023-02-14
0
331
题解 | #字符串的排列#
#include <vector> class Solution { public: vector<string> ans; set<string> temp; string s; string t; vector<i...
2023-02-13
0
266
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页