nu1lptr
nu1lptr
全部文章
题解
归档
标签
去牛客网
登录
/
注册
nu1lptr的博客
全部文章
/ 题解
(共3篇)
题解 | #字符串碎片#
public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param str string字符串 * @return int整型 */ int GetFragment(stri...
C++
2022-05-02
0
390
题解 | #螺旋矩阵#
public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param matrix int整型vector<vector<>> * @return int整型vector...
C++
2022-05-02
0
442
题解 | #淘汰分数#
主要是要考虑重复分数的情况,主要思路:排序后,依次遍历各个分数 #include <algorithm> #include <vector> using namespace std; void scoreBoundry() { int n, x, y; ...
2022-04-30
0
639