html <!DOCTYPE html><html><head> <meta charset="utf-8"> <title>练习·落以零</title> <link rel="stylesheet" href="style.css"></head><body> <div class="contai ...
分类:
其他好文 时间:
2018-09-28 00:02:08
阅读次数:
214
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai ...
分类:
其他好文 时间:
2018-09-25 16:11:22
阅读次数:
163
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai ...
分类:
其他好文 时间:
2018-09-22 10:32:40
阅读次数:
133
使用Microsoft.Office.Interop.Excel 操作 今天在服务器部署,操作程序csv文件转xsl文件的时候,遇到一下问题: System.Runtime.InteropServices.COMException (0x800A03EC): 无法访问文件。请尝试下列方法之一: ? ...
分类:
其他好文 时间:
2018-09-05 18:01:29
阅读次数:
328
CentOS7中安装k8s:
`yum install kubernetes`
?
安装K8S出现如下错误提示:
?
```
错误:docker-ce conflicts with 2:docker-1.13.1-74.git6e3bb8e.el7.centos.x86_64
您可以尝试添加 --skip-broken 选项来解决该问题
您可以尝试执行:rpm -Va --nofiles --nodigest
```
**解决办法:**
系统中已经安装有docker-ce,卸载后可正常安装k8s
yum -y remove docker-ce
?
CentOS7中安装k8s:
yum install kubernetes
安装K8S出现如下错误提示:
错误:docker-ce conflicts with 2:docker-1.13.1-74.git6e3bb8e.el7.centos.x86_64
您可以尝试添加 --skip-broken 选项来解决该问题
您可以尝试执行:rpm -Va --nofiles --nodigest
分类:
其他好文 时间:
2018-08-28 01:04:03
阅读次数:
1652
题目说明 给定一个整数数组和一个整数 k,判断数组中是否存在两个不同的索引 i 和 j,使得 nums [i] = nums [j],并且 i 和 j 的差的绝对值最大为 k。 解法1 / 时间复杂度:O(n) 使用unordered_set保存滑动窗口(长度[0,k]) / bool contai ...
分类:
其他好文 时间:
2018-08-26 18:37:46
阅读次数:
127
上一篇博客我们研究了集群的分片源码,虽然akka的集群分片的初衷是用来解决actor分布的,但如果我们稍加改造就可以很轻松的开发出一个简单的分布式缓存系统,怎么做?哈哈很简单啊,实体actor的id就是key,actor的状态就是value,而且还可以无锁的改变状态。 其实akka的Distribu ...
分类:
其他好文 时间:
2018-08-22 16:46:55
阅读次数:
277
You are given two non empty linked lists representing two non negative integers. The digits are stored in reverse order and each of their nodes contai ...
分类:
其他好文 时间:
2018-08-20 11:37:53
阅读次数:
135
remove libs: [apt-get purge remove] or [aptitude purge] how to use apt-get and aptitude https://blog.csdn.net/yili_xie/article/details/4803314 some er ...
分类:
其他好文 时间:
2018-08-17 23:33:24
阅读次数:
201
函数描述 jQuery() 接受一个字符串,其中包含了用于匹配元素集合的 CSS 选择器。 jQuery.noConflict() 运行这个函数将变量 $ 的控制权让渡给第一个实现它的那个库。 ...
分类:
Web程序 时间:
2018-08-17 23:26:51
阅读次数:
189