番茄炒鸡蛋最好吃
番茄炒鸡蛋最好吃
全部文章
分类
归档
标签
去牛客网
登录
/
注册
番茄炒鸡蛋最好吃的博客
全部文章
(共14篇)
题解 | #快速排序#
const _quickSort = array => { if(array===null||array.length===0) return array; let first = array[0]; let left =...
2023-08-10
0
240
题解 | #柯里化#
// 填写JavaScript function curryIt(fn) { let args = []; return function func(n){ args.push(n); ...
2023-07-31
1
310
题解 | #回文字符串#
const _isPalindrome = string => { // 补全代码 let left = 0; let right = string.length-1; ...
2023-07-31
0
225
题解 | #数组扁平化#
function _flatten(arr){ const result = []; arr.forEach(item=>{ if(Array.isArray(item)){ result.push(..._flatten(item)); }else{ result.pu...
2023-07-18
0
212
题解 | #设计LRU缓存结构#
/** * @param {number} capacity */ var Solution = function(capacity) { // write code here this.cache = new Map(); this.capacity = capacity; }; /*...
2023-07-17
0
254
题解 | #接雨水问题#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * max water * @param arr int整型一维数组 the array * @return long长整型 */ function maxWater( arr ) { //...
2023-07-16
0
281
题解 | #盛水最多的容器#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param height int整型一维数组 * @return int整型 */ function maxArea( height ) { // write code her...
2023-07-16
0
256
题解 | #判断是否为回文字符串#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param str string字符串 待判断的字符串 * @return bool布尔型 */ function judge( str ) { // write code he...
2023-07-16
0
256
题解 | #合并两个有序的数组#
/** * * @param A int整型一维数组 * @param B int整型一维数组 * @return void */ function merge( A, m, B, n ) { // write code here let indexA = m-1; ...
2023-07-16
1
296
题解 | #跳台阶#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param number int整型 * @return int整型 */ function jumpFloor( number ) { // write code here ...
2023-07-16
0
235
首页
上一页
1
2
下一页
末页