码迷,mamicode.com
首页 >  
搜索关键字:bar    ( 5412个结果
原型链来啦~
//自定义 function foo(){ } new Function(); class bar{} //原生的 Function,object,Array,Map,String,Boolean,RegExp,Date,(JSON:普通对象,Math:普通对象) 普通对象,引用数据类型: {} > ...
分类:其他好文   时间:2020-07-02 14:54:32    阅读次数:51
888. Fair Candy Swap
Alice and Bob have candy bars of different sizes: A[i] is the size of the i-th bar of candy that Alice has, and B[j] is the size of the j-th bar of ca ...
分类:其他好文   时间:2020-07-02 10:42:14    阅读次数:53
最长重复子数组
718. 最长重复子数组 思路 这道题类似最长公共子序列,可以使用动态规划来解决。 代码 二维的 /** * 1 <= len(A), len(B) <= 1000 * 0 <= A[i], B[i] < 100 */ class Solution { public int findLength(i ...
分类:编程语言   时间:2020-07-01 23:44:12    阅读次数:83
小程序:wxs(wxs模块)
1、模块 (1)概念 wxs: 脚本语言,不是js语言,结合 wxml,构建出页面的结构,在IOS设备上要比js快 模块: 将一些公共的代码抽离成为一个单独的 js 文件,作为一个模块。 (2)模块的使用 建立公共的逻辑代码块,编写代码后通过module.exports输出代码块:这里面一共有两个模 ...
分类:微信   时间:2020-07-01 20:34:30    阅读次数:114
LoadRunner参数化之九种取值方式
方式介绍 1:Select next row: 选择下一行方法 Sequential 默认 顺序的,按照参数化的数据顺序,从上往下一个一个的来取。 Random 随机取,参数化中的数据,每次随机的从中抽取数据。 Unique 唯一,唯一的向下取值,只能被用一次。 2:Update value on: ...
分类:其他好文   时间:2020-07-01 12:43:59    阅读次数:74
为fastadmin添加重置搜索和批量录入按钮
最终想实现的效果如下 需要明白的两件事 #####一.搜索的逻辑 1.首先增加一个搜索a标签,class命名为chongzhi 2.熟悉搜索的逻辑,所有的tab,所有的jstree都是,通过给通用搜索,传递值,才引起了下面表格的变化. 3.我把js代码写在了backend.js的init里,类似于写 ...
分类:其他好文   时间:2020-06-30 12:53:46    阅读次数:266
nodejs目录与文件遍历
路径相关函数 path.basename('/foo/bar/baz/asdf/quux.html'); // Returns: 'quux.html' path.basename('/foo/bar/baz/asdf/quux.html', '.html'); // Returns: 'quux' ...
分类:Web程序   时间:2020-06-29 20:17:20    阅读次数:72
0042. Trapping Rain Water (H)
Trapping Rain Water (H) 题目 Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is ...
分类:移动开发   时间:2020-06-29 09:29:26    阅读次数:60
leetcode 209. 长度最小的子数组
题目 给定一个含有 n 个正整数的数组和一个正整数 s ,找出该数组中满足其和 ≥ s 的长度最小的连续子数组,并返回其长度。如果不存在符合条件的连续子数组,返回 0。 示例: 输入:s = 7, nums = [2,3,1,2,4,3] 输出:2 解释:子数组 [4,3] 是该条件下的长度最小的连 ...
分类:编程语言   时间:2020-06-29 00:15:29    阅读次数:45
209. 长度最小的子数组
给定一个含有 n 个正整数的数组和一个正整数 s ,找出该数组中满足其和 ≥ s 的长度最小的连续子数组,并返回其长度。如果不存在符合条件的连续子数组,返回 0。 示例: 输入: s = 7, nums = [2,3,1,2,4,3]输出: 2解释: 子数组 [4,3] 是该条件下的长度最小的连续子 ...
分类:编程语言   时间:2020-06-28 18:13:02    阅读次数:52
5412条   上一页 1 ... 16 17 18 19 20 ... 542 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!