domers
domers
全部文章
分类
归档
标签
去牛客网
登录
/
注册
domers的博客
全部文章
(共106篇)
题解 | #奶牛快乐数#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @return bool布尔型 */ ...
2023-10-09
0
269
题解 | #农场牛群众数#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @return int整型vector...
2023-10-09
0
308
题解 | #牛群定位系统#
#include <vector> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param board char字符型vector&...
2023-10-09
0
282
题解 | #牛群的树形结构重建#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2023-10-08
0
361
题解 | #重量级的一层#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2023-09-26
0
295
题解 | #牛群旋转#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2023-09-26
0
298
题解 | #牛群分隔#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: ...
2023-09-26
0
383
题解 | #牛的体重排序#
#include <climits> #include <random> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @p...
2023-09-23
0
340
题解 | #最小三角路径和#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param cows int整型vector<vector<>> ...
2023-09-22
0
314
题解 | #第k轻的牛牛#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2023-09-20
0
345
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页