Given an circular integer array (the next element of the last element is the first element), find a continuous subarray in it, where the sum of number ...
分类:
其他好文 时间:
2016-07-23 18:12:07
阅读次数:
178
Given a sequence of K integers { N1, N2, ..., NK }. 给出一个连续的K个整数 A continuous subsequence is defined to be { Ni, Ni+1, ..., Nj } where 1 <= i <= j <= K ...
分类:
其他好文 时间:
2016-07-23 16:44:50
阅读次数:
116
Given an integer array, find a continuous subarray where the sum of numbers is the biggest. Your code should return the index of the first number and ...
分类:
其他好文 时间:
2016-07-23 00:36:54
阅读次数:
197
持续交付即Continuous Delivery,简称CD,随着DevOps的流行正越来越被传统企业所重视。持续交付讲求以短周期、小细粒度,自动化的方式频繁的交付软件,在这个过
程中要求开发、测试、用户体验等角色紧密合作,快速收集反馈,从而不断改善软件质量并减少浪费。然而,在我所接触的传统企业中,对于持续交付实践的实施都 还非常初级,坦白说,大部分还停留的手工生成发布包,手工替换文件进行部署的...
分类:
其他好文 时间:
2016-07-13 16:34:45
阅读次数:
166
Continuous Deep Q-Learning with Model-based Acceleration 本文提出了连续动作空间的深度强化学习算法。 开始正文之前,首先要弄清楚两个概念:Model-free 和 Model-based。引用 周志华老师的《机器学习》中的一段话来解释这个概念, ...
分类:
其他好文 时间:
2016-07-12 21:16:09
阅读次数:
1954
持续集成(Continuous Integration,简称CI)作为先进的项目实践之一,近年来逐渐受到国内软件公司的重视;但对于许多朋友来说,可能从未听说过持续集成这个词,抑或只是了解概念但并没有实践过。
什么是持续集成?它对软件开发有哪些好处呢?
持续集成的概念
随着软件开发复杂度的不断提高,团队开发成员间如何更好地协同工作以确保软件开发的质量已经慢慢成为开发过程中不可回避的问题。尤...
分类:
其他好文 时间:
2016-07-10 19:03:35
阅读次数:
138
Diligence is the mother of good fortune. 勤勉是好运之母。 The mother of good fortune can be diligence, continuous trials and unremitting efforts. But who is t ...
分类:
其他好文 时间:
2016-07-06 23:10:57
阅读次数:
152
(原文地址:http://www.infoq.com/cn/articles/microservice-and-continuous-delivery) 摘选书中节选-微服务与持续交付 十年以前,软件在一年之内的交付次数屈指可数。 过去的十年间,交付的过程一直被不断地优化和改进。从早期的RUP模型、 ...
分类:
其他好文 时间:
2016-07-04 15:39:02
阅读次数:
218
Given an integer array, find a continuous subarray where the sum of numbers is the biggest. Your code should return the index of the first number and ...
分类:
其他好文 时间:
2016-07-01 06:43:08
阅读次数:
186
Give you an integer matrix (with row size n, column size m),find the longest increasing continuous subsequence in this matrix. (The definition of the ...
分类:
其他好文 时间:
2016-06-25 21:33:58
阅读次数:
149