云林s
云林s
全部文章
分类
归档
标签
去牛客网
登录
/
注册
云林s的博客
全部文章
(共94篇)
题解 | #没有重复项数字的全排列#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nu...
2023-10-19
0
218
题解 | #三数之和#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nu...
2023-10-19
0
188
题解 | #缺失的第一个正整数#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nu...
2023-10-19
0
218
题解 | #数组中只出现一次的两个数字#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nu...
2023-10-19
0
222
题解 | #藏宝图#
using System; using System.Collections.Generic; public class Program { public static void Main() { string father = Console.ReadLine(); ...
2023-10-15
1
206
题解 | #星际穿越#
using System; using System.Collections.Generic; public class Program { public static void Main() { double max = double.Parse(Console.Read...
2023-10-15
0
227
题解 | #数组中出现次数超过一半的数字#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num...
2023-10-09
0
175
题解 | #两数之和#
using System; using System.Collections.Generic; using System.Collections; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 *...
2023-10-09
0
200
题解 | #表达式求值#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 返回表达式的值 * @pa...
2023-10-07
0
203
题解 | #数据流中的中位数#
using System; using System.Collections.Generic; class Solution { List<int> list = new List<int>(); public void Insert(int num) ...
2023-10-06
0
250
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页