码迷,mamicode.com
首页 >  
搜索关键字:longest substring    ( 5540个结果
lc 最长连续序列
链接:https://leetcode-cn.com/problems/longest-consecutive-sequence/ 代码: class Solution { public: int longestConsecutive(vector<int>& nums) { int n = num ...
分类:其他好文   时间:2020-05-23 00:10:02    阅读次数:46
js字符串截取函数
string str="123abc456";int i=3;1 取字符串的前i个字符 str=str.Substring(0,i); // or str=str.Remove(i,str.Length-i); 2 去掉字符串的前i个字符: str=str.Remove(0,i); // or st ...
分类:Web程序   时间:2020-05-23 00:05:00    阅读次数:91
VUE过滤器
filters:{ timeFilter(data) { return data.substring(0, 10).replace(/-/g,'.');//return后面的就是数据处理方法 },}, filters和data同级的 <view>提现有效期:{{ 入参| timeFilter }}- ...
分类:其他好文   时间:2020-05-21 14:36:08    阅读次数:42
LeetCode 1371 每个元音包含偶数次的最长子字符串 做题感悟
题目链接: https://leetcode-cn.com/problems/find-the-longest-substring-containing-vowels-in-even-counts/ 一开始不会做,看了题解并和朋友讨论过后,终于弄懂官方解答为什么那么写了! 先贴一下官方解答的代码: ...
分类:其他好文   时间:2020-05-20 23:59:46    阅读次数:117
LeetCode - Serialize and Deserialize BST
Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file or memory buffer, or ...
分类:其他好文   时间:2020-05-20 14:12:20    阅读次数:55
spark dataFrame api操作
api代码示例入下 object DataFrameCase { def main(args: Array[String]): Unit = { val sparksession = SparkSession.builder().appName("DataFrameCase").master("lo ...
分类:Windows程序   时间:2020-05-19 23:10:39    阅读次数:86
算法-最大不重复子串Go+python
最大不重复子串是经典的 滑动窗口 问题 思路: mp记录每个字符出现的最大索引位置 start记录当前不重复子串的起始索引位置 先用Python实现一遍 完全相同的思路再用Go实现一遍 leetcode结果如下 (Python总是被碾压, 哭) ...
分类:编程语言   时间:2020-05-19 18:11:15    阅读次数:53
获取后缀
// 获取后缀 format(temp) { let index = temp.lastIndexOf('.') let format = temp.substring(index + 1) return format } ...
分类:其他好文   时间:2020-05-19 18:02:56    阅读次数:48
mvc返回多个结果集,返回多个视图
System.Web.Mvc.ViewPage<dynamic>//这句不清楚到底有没有用,反正我没用到 public ActionResult Index() { IDictionary<string, object> entity = new Dictionary<string, object> ...
分类:Web程序   时间:2020-05-19 15:07:06    阅读次数:78
00005-js 获取uuid
admin.guid=function(){functionS4(){return(((1+Math.random())*0x10000)|0).toString(16).substring(1);}return(S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4());}
分类:Web程序   时间:2020-05-19 01:14:03    阅读次数:71
5540条   上一页 1 ... 18 19 20 21 22 ... 554 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!