苦行潜修者
苦行潜修者
全部文章
分类
归档
标签
去牛客网
登录
/
注册
苦行潜修者的博客
全部文章
(共80篇)
题解 | #几步可以从头跳到尾#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 最少需要跳跃几次能跳到末尾 ...
2024-04-19
0
145
题解 | #数组中只出现一次的两个数字#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num...
2024-04-02
0
206
题解 | #大数加法#
using System; using System.Collections.Generic; using System.Text; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * ...
2024-04-01
0
183
题解 | #三个数的最大乘积#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 最大乘积 * @para...
2024-04-01
0
178
题解 | #杨辉三角(一)#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num...
2024-03-31
0
234
题解 | #链表内指定区间反转#
using System; using System.Collections.Generic; /* public class ListNode { public int val; public ListNode next; public ListNode (int x)...
2024-03-31
0
141
题解 | #旋转字符串#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 旋转字符串 * @par...
2024-03-31
0
173
题解 | #旋转数组的最小数字#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num...
2024-03-31
0
154
题解 | #链表相加(二)#
using System; using System.Collections.Generic; /* public class ListNode { public int val; public ListNode next; public ListNode (int x)...
2024-03-31
0
148
题解 | #移动 0#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num...
2024-03-29
0
161
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页