Yang760724227
Yang760724227
全部文章
分类
题解(50)
归档
标签
去牛客网
登录
/
注册
Yang760724227的博客
全部文章
(共50篇)
题解 | #在两个长度相等的排序数组中找到上中位数#
* find median in two sorted array * @param arr1 int整型一维数组 the array1 * @param arr2 int整型一维数组 the array2 * @return int整型 */ function findMedianinTw...
Javascript Node
数组
2022-01-08
0
395
题解 | #集合的所有子集(一)#
* * @param A int整型一维数组 * @return int整型二维数组 */ function subsets( A ) { // write code here if(A.length == 0) return []; A.sort(funct...
Javascript Node
数组
2022-01-07
0
398
题解 | #寻找峰值#
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * @return int整型 */ function findPeakElement( nums ) { // write code here...
Javascript Node
数组
2022-01-07
2
427
题解 | #缺失的第一个正整数#
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * @return int整型 */ function minNumberDisappeared( nums ) { // write code...
Javascript Node
数组
2022-01-07
0
319
题解 | #加起来和为目标值的组合(二)#
* * @param num int整型一维数组 * @param target int整型 * @return int整型二维数组 */ function combinationSum2( num , target ) { // write code here if...
Javascript Node
数组
2022-01-06
0
429
题解 | #顺时针旋转矩阵#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param mat int整型二维数组 * @param ...
Javascript Node
数组
2022-01-06
1
373
题解 | #二维数组中的查找#
在 i <= row - 1 && j >= 0 时循环比较 先比较每一行最后一个数, 如果等,返回true; 如果大于,下一行, 如果小于,在该行向前比较, 退出循环即为没有找到,返回false { // write code here let row ...
Javascript Node
数组
2022-01-05
1
333
题解 | #合并区间#
先排序,再循环比较右值与下个区间左值大小,如果大于再比较右值与下个区间右值,将符合条件区间压进目标数组,继续循环至结束 * function Interval(a, b){ * this.start = a || 0; * this.end = b || 0; * } */ /*...
Javascript Node
数组
2022-01-05
0
442
题解 | #矩阵的最小路径和#
* * @param matrix int整型二维数组 the matrix * @return int整型 */ function minPathSum( matrix ) { // write code here let m = matrix.length; le...
Javascript Node
数组
动态规划
2022-01-04
1
324
题解 | #数组中相加和为0的三元组#
* * @param num int整型一维数组 * @return int整型二维数组 */ function threeSum( num ) { // write code here let len = num.length; if(len < 3) ...
Javascript Node
数组
2022-01-04
0
424
首页
上一页
1
2
3
4
5
下一页
末页