Drone:Drone is a Container-Native, Continuous Delivery Platform。 官方给的定义,从上面的定义可以得出两个关键点: 1,Container-Native:Cloud-Native是云原生,那Container-Native可以翻译成容器原 ...
分类:
其他好文 时间:
2019-09-26 00:40:23
阅读次数:
142
Description: Given an integer array, you need to find one continuous subarray that if you only sort this subarray in ascending order, then the whole a ...
分类:
其他好文 时间:
2019-09-20 16:55:37
阅读次数:
67
第四天 A1007 Maximum Subsequence Sum (25 分) 题目内容 Given a sequence of K integers { N1, N2, ..., NK }. A continuous subsequence is defined to be { Ni, Ni+1 ...
分类:
其他好文 时间:
2019-09-16 19:35:37
阅读次数:
81
题目链接:https://leetcode-cn.com/problems/shortest-unsorted-continuous-subarray/ 题目大意: 略. 分析: 如果排序区间为 [L, R], 那么 nums[L] 一定大于区间内的最小值,而 nums[R] 一定大于区间内的最大值 ...
分类:
编程语言 时间:
2019-09-06 15:49:35
阅读次数:
65
什么是持续集成 持续集成(Continuous Integration,简称CI),是一种软件开发实践,在实践中指只要代码有变更,就自动运行构建和测试,反馈运行结果。通俗一点来讲,就是绑定项目的代码仓库,SVN或者Git库,自动抓取新的代码,完成构建,甚至执行测试,部署到服务器。 持续集成的好处: ...
分类:
其他好文 时间:
2019-09-06 01:21:39
阅读次数:
92
题目大意:给定一个长度为 N 的序列,定义连续区间 [l, r] 为:序列的一段子区间,满足 [l, r] 中的元素从小到大排序后,任意相邻两项的差值不超过1。求一共有多少个连续区间。 题解:单调栈 + 线段树 首先,对于区间计数类问题常规的思路是枚举区间的左端点或右端点,统计以该点为端点的区间个数 ...
分类:
其他好文 时间:
2019-09-03 16:51:49
阅读次数:
89
Given an integer array, you need to find one continuous subarray that if you only sort this subarray in ascending order, then the whole array will be ...
分类:
其他好文 时间:
2019-08-18 09:39:14
阅读次数:
62
1、Normal distribution In probability theory, the normal (or Gaussian or Gauss or Laplace–Gauss) distribution is a very common continuous probability d ...
分类:
其他好文 时间:
2019-08-03 21:22:11
阅读次数:
119
Given a sequence of K integers { N?1??, N?2??, ..., N?K?? }. A continuous subsequence is defined to be { N?i??, N?i+1??, ..., N?j?? } where 1. The Max ...
分类:
其他好文 时间:
2019-08-03 11:06:46
阅读次数:
94