cmd中输入命令建立虚拟环境: conda create --name my_env python=3.7 激活环境: # windows进入虚拟环境my_env activate my_env # Linux 进入虚拟环境 source activate my_env 退出当前虚拟环境 deact ...
                            
                            
                                分类:
其他好文   时间:
2020-06-07 11:20:20   
                                阅读次数:
49
                             
                         
                    
                        
                            
                            
                                    In this lesson you will learn to ask about skills. 课上内容(Lesson) "I'm a man of my word" 我是一个讲信用的人/ 我是一个说道做到的人 a street vendor illegal 非法 <--> legal 合法  ...
                            
                            
                                分类:
其他好文   时间:
2020-06-07 11:05:19   
                                阅读次数:
75
                             
                         
                    
                        
                            
                            
                                    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1848 代码如下: #include<bits/stdc++.h> using namespace std; typedef unsigned int ui; typedef long long ll;  ...
                            
                            
                                分类:
其他好文   时间:
2020-06-06 19:00:21   
                                阅读次数:
75
                             
                         
                    
                        
                            
                            
                                    ###题目 在20000个数中找一个满足下列条件的最大集合: 集合中所有数之间的最大公因数是1(即两两互质) ###代码 def _2018(arr: list): # 准备工具 arr = list(set(arr)) arr.sort() size = len(arr) my_dict = {} ...
                            
                            
                                分类:
其他好文   时间:
2020-06-06 18:25:27   
                                阅读次数:
60
                             
                         
                    
                        
                            
                            
                                    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1527 代码如下: #include<bits/stdc++.h> using namespace std; typedef unsigned int ui; typedef long long ll;  ...
                            
                            
                                分类:
其他好文   时间:
2020-06-06 18:18:17   
                                阅读次数:
60
                             
                         
                    
                        
                            
                            
                                    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1521 代码如下: #include<bits/stdc++.h> using namespace std; typedef unsigned int ui; typedef long long ll;  ...
                            
                            
                                分类:
其他好文   时间:
2020-06-06 13:06:06   
                                阅读次数:
56
                             
                         
                    
                        
                            
                            
                                weblogic打补丁小结: 在WebLogic Server 10.3.4之后的版本, Oracle 提供了 PSUs (patch set updates). 具体参考(My Oracle Support Note 1306505.1). 在1470197.1 文档中,描述了weblogic当前 ...
                            
                            
                                分类:
Web程序   时间:
2020-06-05 15:28:53   
                                阅读次数:
212
                             
                         
                    
                        
                            
                            
                                https://my.oschina.net/sdlvzg/blog/1798162 https://blog.csdn.net/weixin_30340353/article/details/99235730 ...
                            
                            
                                分类:
其他好文   时间:
2020-06-05 15:21:12   
                                阅读次数:
69
                             
                         
                    
                        
                            
                            
                                题目链接:https://vjudge.net/problem/HDU-1074 Ignatius has just come back school from the 30th ACM/ICPC. Now he has a lot of homework to do. Every teacher  ...
                            
                            
                                分类:
其他好文   时间:
2020-06-05 13:08:02   
                                阅读次数:
72
                             
                         
                    
                        
                            
                            
                                问题: mysql root 没有任何权限 解决方案 1. add skip-grant-tables in /etc/my.conf [root@mysql~]# cat /etc/my.cnf|grep -i skip skip-grant-tables 2. restart mysql sys ...
                            
                            
                                分类:
数据库   时间:
2020-06-05 01:09:29   
                                阅读次数:
163