码迷,mamicode.com
首页 >  
搜索关键字:valueerror substring    ( 4073个结果
3. 无重复字符的最长子串
原题链接:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/ class Solution { public int lengthOfLongestSubstring(String s) { ...
分类:其他好文   时间:2020-12-25 11:54:02    阅读次数:0
最长回文字符串
题目来源:https://leetcode-cn.com/problems/longest-palindromic-substring/submissions 思路:动态规划(参看官方解析) 关键点: 1:对于字符串长度大于2,状态转移方程:P(i,j)=P(i+1,j?1) && (Si?==Sj ...
分类:其他好文   时间:2020-12-18 12:45:33    阅读次数:3
java实现sql批量插入参数
背景:需要更新一些不规范的时间格式,如将某个时间格式化为yy-MM-dd,实际上为yy-MM-ddhh:mm:ss,并且需要提供回滚脚本。例如:规范化时间的脚本如下:updatetestsettest_date=substring(account_date,1,10)WHEREtest_date>‘2017-06-0100:00:00‘ANDtest_date<‘2017-09-070
分类:数据库   时间:2020-12-04 10:59:43    阅读次数:7
C# WPF:快把文件从桌面拖进我的窗体来!
首发公众号:Dotnet9 作者:沙漠之尽头的狼 日期:202-11-27 一、本文开始之前 上传文件时,一般是提供一个上传按钮,点击上传,弹出文件(或者目录选择对话框),选择文件(或者目录)后,从对话框对象中取得文件路径后,再进行上传操作。 选择对话框代码如下: OpenFileDialog op ...
分类:Windows程序   时间:2020-12-03 11:47:17    阅读次数:16
Django ValueError: invalid literal for int() with base 10: 'xxx'解决办法
File "D:\workspace\mall\venv\lib\site-packages\django\db\models\fields\__init__.py", line 972, in get_prep_value return int(value)ValueError: invalid ...
分类:其他好文   时间:2020-12-01 12:26:06    阅读次数:9
过滤器对时间格式的处理
filters:{ dotime(mess){ if(mess&&mess.length>10){ return mess.substring(5,10) } }, do2time(mess){ if(mess&&mess.length>10){ return mess.substring(11,1 ...
分类:其他好文   时间:2020-12-01 12:22:25    阅读次数:11
arcgis engine指定范围导出屏幕图片
地理坐标下,所以要转换为度。 arcgis engine 10.2.2 +vs2010 [DllImport("GDI32.dll")] public static extern int GetDeviceCaps(int hdc, int nIndex); /* User32 delegates ...
分类:其他好文   时间:2020-11-23 12:49:37    阅读次数:30
数据库行转列、列转行、字段拼接
列转行 select prd_no_chg_y, SUBSTRING(t.prd_no_chg_y, number ,CHARINDEX(';',t.prd_no_chg_y+';',number)-number) prd_no_chg from tb t,master..spt_values s ...
分类:数据库   时间:2020-11-21 12:37:40    阅读次数:11
3. 无重复字符的最长子串 Longest Substring Without Repeating Characters
Given a string s, find the length of the longest substring without repeating characters. Input: s = "abcabcbb"Output: 3Explanation: The answer is "abc ...
分类:其他好文   时间:2020-11-08 17:44:10    阅读次数:26
求根到叶子节点数字之和
##前序遍历+判断 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x ...
分类:其他好文   时间:2020-10-30 11:39:04    阅读次数:14
4073条   上一页 1 ... 3 4 5 6 7 ... 408 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!