题目链接:https://leetcode cn.com/problems/shu zu zhong chu xian ci shu chao guo yi ban de shu zi lcof/ 循环抵消 统计数字出现的个数cnt = 0, val = 1; 遍历数组中每个数字x 如果val = ...
分类:
编程语言 时间:
2020-04-19 15:03:09
阅读次数:
66
题目链接:https://leetcode cn.com/problems/yuan quan zhong zui hou sheng xia de shu zi lcof/ 数学 ...
分类:
其他好文 时间:
2020-04-19 15:02:50
阅读次数:
60
在使用starDict时,会出现以下报错: Configuration server couldn't be contacted: D-BUS error: Unable to store a value at key '/apps/stardict/manage_dictionaries/dict ...
分类:
其他好文 时间:
2020-04-19 01:12:11
阅读次数:
83
1.我的maven项目在eclipse中Run As->Maven install,生成jar包后,用java -jar 包名 运行报错。报错图如下: 2.百度查了很多,有说版本号不一致的,有说缺少jar包的,有说用maven-shade-plugin插件的。 3.下面粘贴一下我的pom.xml和a ...
分类:
编程语言 时间:
2020-04-17 21:50:00
阅读次数:
74
前言 织梦dedecms系统是很多站长比较喜爱的一款CMS系统,用它来搭建一个网站非常的容易,然而织梦dedecms系统自带的手机版却饱受诟病,比如不能生成静态页,dedecms手机版功能太简单,pc和手机是不同的URL,还需要在百度提交百度URL适配等等。 市面上的插件 所以市面上也有不少织梦de ...
分类:
移动开发 时间:
2020-04-17 12:42:39
阅读次数:
199
问题:ORA-04031: unable to allocate 12312 bytes of shared memory ("shared pool","unknown object","KKSSP^405","kglseshtTable") 解决:增加数据库存内存大小 SQL> alter sy ...
分类:
数据库 时间:
2020-04-16 20:54:58
阅读次数:
278
Car model and year: GT - 2006 Nissan 350Z RevUp DE Note : GT model of 350z has a traction control whereas the base models don't (apparently). So, if y ...
分类:
编程语言 时间:
2020-04-16 15:10:21
阅读次数:
152
PyMySQL的安装 pip install PyMySQL python连接数据库 import pymysql db = pymysql.connect("数据库ip","用户","密码","数据库" ) # 打开数据库连接 cursor.execute("SELECT VERSION()") ...
分类:
数据库 时间:
2020-04-16 14:51:54
阅读次数:
63
使用threading模块中的Timer函数 from threading import Timer import time def execute_func(name, age, gender, hobby): print(f"name is {name}, age is {age}, gende ...
分类:
其他好文 时间:
2020-04-16 00:58:09
阅读次数:
94
在下面这个表T中,如果执行 select * from T where k between 3 and 5: mysql> create table T ( ID int primary key, k int NOT NULL DEFAULT 0, s varchar(16) NOT NULL DE ...
分类:
其他好文 时间:
2020-04-16 00:44:17
阅读次数:
70