aa = pd.DataFrame({'id':['xx','yy','zz','mm'], 'a':['10','10','11',np.nan],'b':['11','12','11',np.nan],'c':['10','12','',np.nan],'d':['10','10 ...
分类:
其他好文 时间:
2020-01-07 20:13:27
阅读次数:
548
google it http://www.swig.org/Doc3.0/CSharp.html http://samanbarghi.com/blog/2016/12/06/generate-c-interface-from-c-source-code-using-clang-libtooling ...
分类:
编程语言 时间:
2020-01-06 00:45:53
阅读次数:
147
题意:Given a n × n matrix A and a positive integer k, find the sum S = A + A2 + A3 + … + Ak. n (n ≤ 30), k (k ≤ 109) and m (m < 104) 输出结果矩阵 解法: 若 n是偶数 S ...
分类:
其他好文 时间:
2020-01-05 10:09:31
阅读次数:
80
1.安装微信 yay -S deepin-wine-wechat 2.安装tim yay -S deepin-wine-tim 安装参考:https://www.jianshu.com/p/01b6159dac08 3.禁忌安装的时候最好不要退出,否则会出现闪退打不开 解决:卸载微信,重新安装 卸载 ...
分类:
微信 时间:
2020-01-05 09:59:48
阅读次数:
8435
大家经常用google搜索,如何提取搜索结果的链接呢?对搜索结果进行微信域名链接检测,提取有效的链接或者域名 ...
分类:
微信 时间:
2020-01-04 12:31:21
阅读次数:
114
方法一 //求解最大连续子序列和问题 #include<stdio.h> long maxSubSum(int a[],int n){ int i,j,k; long maxSum=a[0],thisSum; for(i=0;i<n;i++){ for(j=i;j<n;j++){ thisSum=0 ...
分类:
其他好文 时间:
2020-01-03 23:32:36
阅读次数:
192
第十课跳出循环(break和continue)break:退出整个循环不执行循环下面的其他语句continue:忽略continue后面的所有的语句然后会转向执行下一次的循环也就是会执行下面的语句的#coding:utf-8x=0whilex<12:print(x,end=‘,‘)x+=1#结果Wie:0,1,2,3,4,5,6,7,8,9,10,11,print()y=0whiley<
分类:
其他好文 时间:
2020-01-03 15:35:29
阅读次数:
102
SSH安全免密登录:shh key ssh key使用非对称加密方式生成公钥和私钥 私钥存放在本地~/.ssh目录 公钥可以对外公开,放在服务器的~/.ssh/authorizedkeys Linux平台生成 ssh key ssh-keygen-t rsa ssh-keygen-t dsa win ...
分类:
其他好文 时间:
2020-01-02 22:49:35
阅读次数:
96
tags: unity,unity excel,unity持久化数据 grammar_cjkRuby: true unity持久化数据之Excel 第三方库 EPPlus:https://github.com/JanKallman/EPPlus 读取 csharp?linenums //创建Exce ...
分类:
编程语言 时间:
2019-12-31 23:52:38
阅读次数:
188
#include<stdio.h> #include<iostream> #include<vector> #include<string> using namespace std; int f[1010][1010] = {0}; int main() { string s; getline(ci ...
分类:
其他好文 时间:
2019-12-30 23:15:03
阅读次数:
105