奶ve
奶ve
全部文章
分类
归档
标签
去牛客网
登录
/
注册
奶ve的博客
全部文章
(共61篇)
题解 | #最小的K个数#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param input int整型vector * @param k int整型 ...
2024-05-12
0
163
题解 | #只出现一次的数字#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @return int整型 ...
2024-05-12
0
128
题解 | #只出现一次的数字(二)#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @return int整型 ...
2024-05-12
0
144
题解 | #包含不超过两种字符的最长子串#
#include <iostream> #include <string> #include <unordered_map> using namespace std; int lengthOfLongestSubstringTwoDistinct(const s...
2024-05-12
0
180
题解 | #K 个不同整数子数组#
class Solution { private: // 函数用于计算具有最多 k 个不同整数的子数组数量 int atMostKDistinct(const vector<int>& nums, int k) { unordered_map&...
2024-05-12
0
168
题解 | #四数之和#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @param target int整型...
2024-05-12
0
166
题解 | #移动 0#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @return int整型vector...
2024-05-12
0
168
题解 | #链表中环的入口结点#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } }; */ class Solution { public:...
2024-05-12
0
153
题解 | #牛牛的果实迷宫#
/** * struct Point { * int x; * int y; * Point(int xx, int yy) : x(xx), y(yy) {} * }; */ class Solution { public: /** * 代码中的类名、方法名...
2024-05-12
2
175
题解 | #腐烂的苹果#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param grid int整型vector<vector<>> ...
2024-05-12
0
192
首页
上一页
1
2
3
4
5
6
7
下一页
末页