Problem : Given an integer array, you need to find one continuous subarray that if you only sort this subarray in ascending order, then the whole arra ...
分类:
其他好文 时间:
2020-04-29 23:08:17
阅读次数:
65
Leetcode 560 Subarry Sum Equals K Given an array of integers and an integer k, you need to find the total number of continuous subarrays whose sum equ ...
分类:
其他好文 时间:
2020-04-22 20:19:06
阅读次数:
65
Problem : Given an unsorted array of integers, find the length of longest continuous increasing subsequence (subarray). Example 1: Example 2: Note: Le ...
分类:
其他好文 时间:
2020-04-18 14:06:13
阅读次数:
59
8 Jenkins 8.1 Jenkins安装 Jenkins简介 Jenkins是一个开源软件项目,是开源CI&CD软件领导者,是基于Java开发的一种持续集成工具,提供超过1000个插件来支持构建、部署、自动化,满足任何项目的需要。 CI(Continuous integration,中文意思是 ...
分类:
其他好文 时间:
2020-04-15 11:04:18
阅读次数:
63
有了私服当然就得备份数据了,手机照片,工作目录,经典电影之类的,DT时代数据无价。 syncthing Syncthing is a continuous file synchronization program. It synchronizes files between two or more ...
分类:
其他好文 时间:
2020-04-07 22:42:29
阅读次数:
332
持续集成概述 持续集成概述:持续集成(continuous integration)持续集成是指开发者在代码的开发过程中,可以频繁的代码部署集成到主干,并进行自动化测试。 持续交付:持续交付指的是在持续集成的环境基础之上,将代码部署到预生产环境。 持续部署:在持续交付的基础上,把部署到生产环境的过程 ...
分类:
其他好文 时间:
2020-04-02 23:03:12
阅读次数:
195
什么是持续集成 Jenkins的安装 Jenkins的使用 Jenkins与SVN或git配合使用 使用Jenkins持续集成webdriver脚本 一、什么是持续集成 持续集成(Continuous Integration),简称CI 是一种软件开发实践,即团队开发人员经常集成他们的工作,每次集成 ...
分类:
其他好文 时间:
2020-03-22 13:44:24
阅读次数:
64
Given an array of integers and an integer k, you need to find the minimum size of continuous subarrays whose sum equals to k, and return its length. i ...
分类:
其他好文 时间:
2020-03-18 09:33:00
阅读次数:
42
问题: 给出给定数组的描述: Example 1: Input: [0,1,2,4,5,7] Output: ["0->2","4->5","7"] Explanation: 0,1,2 form a continuous range; 4,5 form a continuous range. Ex ...
分类:
其他好文 时间:
2020-03-15 15:03:03
阅读次数:
53
numerical integration, 数值积分。numerical integration refers to methods in which the integral over continuous function is evaluated by computing the value ...
分类:
其他好文 时间:
2020-03-06 22:17:52
阅读次数:
73