Given an array nums of n integers and an integer target, find three integers in nums such that the sum is closest to target. Return the sum of the thr ...
分类:
其他好文 时间:
2018-10-03 00:28:19
阅读次数:
161
继承粗体文本 标签(空格分隔): 继承 什么是继承: 继承是指类与类之间的关系,是一种什么“是”什么的关系,继承的功能之一就是用来解决代买重用问题,继承是一种创建新类的方式,在python中,新建的类是可以继承多个父类,父类又可以成为基类或者超类,新建的类称为派生类或者子类; python中的继承分 ...
分类:
编程语言 时间:
2018-10-01 00:15:16
阅读次数:
186
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 24840 Accepted Submission(s): 9666 Problem Descri ...
分类:
其他好文 时间:
2018-10-01 00:11:39
阅读次数:
176
Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. For example, two is written as II in Roman numeral, just two one's ...
分类:
其他好文 时间:
2018-09-30 21:24:40
阅读次数:
185
HTML介绍 Web服务本质 import socket sk = socket.socket() sk.bind(("127.0.0.1", 8080)) sk.listen(5) while True: conn, addr = sk.accept() data = conn.rec ...
分类:
Web程序 时间:
2018-09-30 20:43:15
阅读次数:
219
Problem UVA437-The Tower of Babylon Accept: 3648 Submit: 12532Time Limit: 3000 mSec Problem Description Perhaps you have heard of the legend of the To ...
分类:
其他好文 时间:
2018-09-29 23:48:42
阅读次数:
204
为什么要使用Nsq 最近一直在寻找一个高性能,高可用的消息队列做内部服务之间的通讯。一开始想到用zeromq,但在查找资料的过程中,意外的发现了Nsq这个由golang开发的消息队列,毕竟是golang原汁原味的东西,功能齐全,关键是性能还不错。其中支持动态拓展,消除单点故障等特性, 都可以很好的满 ...
分类:
其他好文 时间:
2018-09-29 15:24:35
阅读次数:
233
背景系统:redhat764位安装安装介质链接:https://pan.baidu.com/s/1xgMjZotEbJaEBMIlAdcH5Q密码:kg41安装步骤rpm-ivhlibpmem-1.3-3.el7.x86_64.rpmrpm-ivhlibpmemblk-1.3-3.el7.x86_64.rpmrpm-ivhboost-system-1.53.0-18.el7.x86_64.rpmr
分类:
移动开发 时间:
2018-09-29 14:24:18
阅读次数:
313
1 使用单机local模式提交任务 local模式也就是本地模式,也就是在本地机器上单机执行程序。使用这个模式的话,并不需要启动Hadoop集群,也不需要启动Spark集群,只要有一台机器上安装了JDK、Scala、Spark即可运行。 进入到Spark2.1.1的安装目录,命令是: 执行命令,用单 ...
分类:
其他好文 时间:
2018-09-28 15:24:33
阅读次数:
183
一、表单实现样例 在表单中利用POST 提交信息,之后获取到后进行输出。 二、源码实现 在源码中有详细注释 ...
分类:
Web程序 时间:
2018-09-28 12:37:13
阅读次数:
173