class Solution { public boolean wordBreak(String s, List<String> wordDict) { return isContain(s, wordDict); } Map<String,Boolean> map = new HashMap<>( ...
分类:
其他好文 时间:
2021-03-17 14:50:42
阅读次数:
0
class Solution { public int characterReplacement(String s, int k) { int left =0,right=0; int maxLength = -1; int result = 0; char[] charNums = new cha ...
分类:
其他好文 时间:
2021-03-17 14:50:06
阅读次数:
0
思路:判断某字符串是否为空,为空的标准是str==null或str.length()==0一.空字符串与null区别1、类型 null表示的是一个对象的值,而并不是一个字符串。例如声明一个对象的引用,String a = null ;""表示的是一个空字符串,也就是说它的长度为0。例如声明一个字符串 ...
分类:
编程语言 时间:
2021-03-17 14:48:23
阅读次数:
0
response.setHeader("Cache-Control","no-cache"); This is used to prevent the browser from caching your dynamic content generated by a JSP or Servlet. Y ...
分类:
系统相关 时间:
2021-03-17 14:45:16
阅读次数:
0
C++三种管理数据内存的方式:自动存储,静态存储,动态存储 自动存储:自动变量的持久性为自动的,在程序开始执行其所属的函数后者代码块时创建,执行后释放 静态存储:在程序整个运行期间都存在。(外部链接性,内部链接性,无链接性) 内存泄漏问题:被分配的内存再也不能使用,也无法回收(new和delete使 ...
分类:
编程语言 时间:
2021-03-17 14:37:09
阅读次数:
0
c++函数在linux系统下编译之后会变成如下样子 _ZNK4Json5ValueixEPKc 在linux命令行使用c++filter $ c++filt _ZNK4Json5ValueixEPKcJson::Value::operator[](char const*) const 可以得到函数的 ...
分类:
编程语言 时间:
2021-03-17 14:19:33
阅读次数:
0
from xlutils.copy import copy import xlrd # 加载已存在的xls old_workbook = xlrd.open_workbook('guoshun.xlsx') # 将已存在的excel拷贝进新的excel new_workbook = copy(old ...
分类:
其他好文 时间:
2021-03-17 14:13:15
阅读次数:
0
电脑常用快捷键 切换页面 : alt +tab 全选:ctrl + a 打开菜单界面 : windows 关闭界面/结束游戏界面 :alt+F4 复制:ctrl +c 粘贴:ctrl+v 大部分软件撤回撤销 :ctrl+z 保存代码:ctrl+s ( 写一行保存一行) 永久删除软件,在根本上删除 s ...
分类:
其他好文 时间:
2021-03-17 14:12:56
阅读次数:
0
AtCoder Beginner Contest 195 Editorial Problem A - Health M Death(opens new window) 只要检查 \(H\equiv 0\) 即可. Time complexity is \(\mathcal{O}(1)\). Spac ...
分类:
其他好文 时间:
2021-03-17 14:07:28
阅读次数:
0
原文:https://reactjs.org/blog/2019/08/15/new-react-devtools.html Introducing the New React DevTools We are excited to announce a new release of the Reac ...
分类:
其他好文 时间:
2021-03-17 14:05:07
阅读次数:
0