1. 今天刚装了mysql8.0.13,试着分配几个账号和权限,结果报错: 2. 查资料得知mysql8的分配权限不能带密码隐士创建账号了,要先创建账号再设置权限 输入命令: Grant all privileges on test.* to 'test'@'%'; 又报错: You are not ...
分类:
数据库 时间:
2020-02-28 11:40:10
阅读次数:
90
Nvidia 2019 perl 笔试题 统计一个文件内单词的频次并排序 文本如下: "ALL happy families resemble one another; every unhappy family is unhappy in its own way. All was confusion ...
分类:
其他好文 时间:
2020-02-28 01:22:15
阅读次数:
74
题目链接:http://codeforces.com/problemset/problem/13/E Little Petya likes to play a lot. Most of all he likes to play a game «Holes». This is a game for o ...
分类:
其他好文 时间:
2020-02-27 19:09:01
阅读次数:
78
Attached the video link hereDoc requirements:TODO1. English doc2. Mark the important note 语法框架:10种词性、9种成分、8种句型10种词性nounpronoun we, that, all, whonumer... ...
分类:
其他好文 时间:
2020-02-27 17:39:03
阅读次数:
260
GeoServer发布tif影像 报错如下: Error rendering coverage on the fast path javax.media.jai.util.ImagingException:All factories fail for the operation "ImageRead ...
分类:
其他好文 时间:
2020-02-27 16:02:37
阅读次数:
421
##move## for((i=1;i<=22;i++));do cp combine_all.split_$i split_$i;done ##gzip## mkdir gzip/workshell for((i=1;i<=22;i++));do echo "gzip split_$i"> spl ...
分类:
其他好文 时间:
2020-02-27 13:12:40
阅读次数:
60
a="abcd31d111111"b="3acdb1"这道题在网上也有很多的答案了,以下代码仅为抛砖引玉。我这里简单的说下我的想法:分析:判断元素是否相同,判断组成的元素是否一致,也就是重复的元素按一次计算就可以了方法1:使用集合的方式a="abcd31d111111"b="3acdb1"print(set(a)==set(b))方法2:使用all()1.先判断长度2.使用python的all这个
分类:
其他好文 时间:
2020-02-27 11:40:10
阅读次数:
64
1、wget http://mirroes.163.com/.help/CentOS7-Base-163.repo下载163 yum源 或者下载后上传到/etc/yum.repos.d目录并把之前的yum源放到一个文件夹内 2、163 yum源配置完毕后 yum clean all(清除yum源缓存 ...
分类:
其他好文 时间:
2020-02-27 10:30:34
阅读次数:
51
1 """ 2 Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n). 3 Example: 4 Inpu ...
1 """ 2 Given a set of distinct integers, nums, return all possible subsets (the power set). 3 Note: The solution set must not contain duplicate subse ...
分类:
其他好文 时间:
2020-02-27 00:43:40
阅读次数:
73