题目: Given a positive integer n, write a program to find out a nonzero multiple m of n whose decimal representation contains only the digits 0 and 1. Y ...
分类:
其他好文 时间:
2020-06-16 12:50:35
阅读次数:
58
1,安装wget命令 yum install wget 2,在/usr/local/src目录下载源码包 wget http://cn2.php.net/distributions/php-7.2.4.tar.gz 解压源码包 tar zxvf php-7.2.4.tar.gz 3,安装编译php需 ...
分类:
Web程序 时间:
2020-06-16 11:37:36
阅读次数:
72
1 """写入csv文件""" 2 3 4 import csv 5 6 # 方法一: 7 def write_csv_demo1(): 8 headers = ['username', 'age', 'height'] 9 values = [ 10 ('张三', 18, 180), 11 ('李 ...
分类:
其他好文 时间:
2020-06-15 23:09:20
阅读次数:
54
import configparser#write'''config = configparser.ConfigParser()config["DEFAULT"] = {'ServerAliveInterval': '45', 'Compression': 'yes', 'CompressionLe ...
分类:
编程语言 时间:
2020-06-15 22:46:08
阅读次数:
65
https://www.cse.unsw.edu.au/~cs9313/20T2/slides/L2.pdf https://drive.google.com/drive/folders/13_vsxSIEU9TDg1TCjYEwOidh0x3dU6es 第二节课花了40分钟讲,如果dataNode ...
分类:
其他好文 时间:
2020-06-15 18:02:14
阅读次数:
50
hadoop文件目录结构 http://192.168.21.110:50070/explorer.html#/ 登录后会看到hadoop的数据目录 报错解决 Permission denied: user=dr.who, access=WRITE, inode="/":root:supergrou ...
分类:
其他好文 时间:
2020-06-15 17:48:08
阅读次数:
55
DATA(update_date) = '20020615'. SELECT SINGLE update_date INTO @update_date FROM ztest WHERE update_date = '20020616'. WRITE update_date. 当表中不存在数据时 即返 ...
分类:
其他好文 时间:
2020-06-15 13:45:35
阅读次数:
33
Linux:相对路径,存放到了和代码相同目录 write.table(x, "./abc.txt") Windows:绝对路径 write.table(x, "D:/codes/abc.txt") ...
分类:
编程语言 时间:
2020-06-15 12:11:46
阅读次数:
189
前言 上一篇【.Net Core微服务入门全纪录(二)——Consul-服务注册与发现(上)】已经成功将我们的服务注册到Consul中,接下来就该客户端通过Consul去做服务发现了。 服务发现 同样Nuget安装一下Consul: 改造一下业务系统的代码: ServiceHelper.cs: pu ...
分类:
Web程序 时间:
2020-06-15 09:41:35
阅读次数:
70
创建一个依赖注入容器 class Program { static void Main(string[] args) { //创建一个依赖注入容器(IServiceProvider) var service = new ServiceCollection().AddSingleton<IPerson ...
分类:
其他好文 时间:
2020-06-14 16:56:21
阅读次数:
47