问题: 二分查找,给定一个已排序的数组,和一个目标值target 在该数组中找到target的index返回,若没找到,则返回-1。 Example 1: Input: nums = [-1,0,3,5,9,12], target = 9 Output: 4 Explanation: 9 exist ...
分类:
其他好文 时间:
2020-08-12 15:53:00
阅读次数:
60
title: woj1019 Curriculum Schedule 输入输出 date: 2020-03-19 10:43:00 categories: acm tags: [acm,woj] 水题,处理好输入输出就可以 1 描述 New semester has begun, a lot of ...
分类:
其他好文 时间:
2020-08-12 14:05:12
阅读次数:
48
1 import java.io.*; 2 import java.nio.charset.Charset; 3 import java.util.Enumeration; 4 import java.util.zip.ZipEntry; 5 import java.util.zip.ZipFile ...
分类:
编程语言 时间:
2020-08-10 16:10:29
阅读次数:
67
给定一个长度为n的数组a,它有n(n+1)/2??个子数组。请计算这些子数组的和,然后按照升序排列,并返回排序后第k个数。 1≤n≤10?^5 1≤a?i≤10^?9 1≤k≤?n(n+1)/2 在线评测地址:点击此处前往 Example1 Input: [2,3,1,4] 6 Output:5 E ...
分类:
编程语言 时间:
2020-08-10 11:03:25
阅读次数:
93
安装webpack 在全局安装webpack: npm install webpack -g 基本配置 在项目的根目录创建一个 webpack.config.js module.exports = { // 配置项 // entry: 打包的入口文件,一个字符串或者一个对象 // output: 配 ...
分类:
Web程序 时间:
2020-08-09 14:23:43
阅读次数:
76
处理PDF和Word文档 PDF 文档 从PDF提取文本 用于处理PDF的模块是PyPDF2,它没有办法从PDF 文档中提取图像、图表或其他媒体,但可以提取文本,并将文本返回为Python 字符串。 >>> import PyPDF2 >>> pdfFileObj = open('meetingmi ...
分类:
其他好文 时间:
2020-08-07 12:30:15
阅读次数:
57
C. Uncle Bogdan and Country Happiness time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Un ...
分类:
移动开发 时间:
2020-08-06 17:04:18
阅读次数:
99
1.写在前面 在开始之前,说明一下该篇中重点在union、intersection、difference、filter的实现,对于Sets类中的其他方法如newHashSet、newConcurrentHashSet、newLinkedHashSet等方法等见名知意,不做介绍。 2.阅读内容 col ...
分类:
其他好文 时间:
2020-08-06 13:14:27
阅读次数:
75