A sequence of numbers is called arithmetic if it consists of at least three elements and if the difference between any two consecutive elements is the ...
分类:
其他好文 时间:
2018-09-29 00:05:07
阅读次数:
263
题目如下: 解题思路:简单的不能再简单的题目了,对于任意一个A[i]来说,其可能的最小的最大值是A[i]-K,最大的最小值是A[i]+K。遍历数组,求出所有元素中最大的最小值和最小的最大值,两者之差(小于零则取零)就是答案。 代码如下: ...
分类:
其他好文 时间:
2018-09-25 14:03:29
阅读次数:
109
1 class Solution 2 { 3 public: 4 int smallestRangeI(vector& A, int K) 5 { 6 int Max = INT_MIN; 7 int Min = INT_MAX; 8 for(auto d:A) 9 ... ...
分类:
其他好文 时间:
2018-09-23 13:49:26
阅读次数:
283
Given a collection of number segments, you are supposed to recover the smallest number from them. For example, given { 32, 321, 3214, 0229, 87 }, we c ...
分类:
其他好文 时间:
2018-09-23 13:48:06
阅读次数:
191
python的set和其他语言类似, 是一个无序不重复元素集, 基本功能包括关系测试和消除重复元素. 集合对象还支持union(联合), intersection(交), difference(差)和sysmmetric difference(对称差集)等数学运算. sets 支持 x in set ...
分类:
编程语言 时间:
2018-09-21 23:02:51
阅读次数:
265
集合特点: 无序,不能重复 集合方法: add(),clear(),copy() pop()随机删,remove()指定删不存在会报错,discard指定删,不存在不会报错 intersection()取交集跟&一样效果 union()取并集跟|效果一样 difference()差集被减数放前面跟- ...
分类:
编程语言 时间:
2018-09-20 16:00:52
阅读次数:
155
set方法 intersection方法 union方法 difference方法 issubset方法 issupperset方法 symmetric_difference方法 isdisjoint方法 简写方式 add方法 update方法 remove方法 ...
分类:
编程语言 时间:
2018-09-18 11:21:23
阅读次数:
146
Given an unsorted integer array, find the smallest missing positive integer.Example 1:Input: [1,2,0]Output: 3Example 2:Input: [3,4,-1,1]Output: 2Examp ...
分类:
其他好文 时间:
2018-09-16 12:23:58
阅读次数:
137
Given N integers, you are supposed to find the smallest positive integer that is NOT in the given list. Input Specification: Each input file contains ...
分类:
其他好文 时间:
2018-09-15 22:07:00
阅读次数:
220
https://pintia.cn/problem-sets/994805342720868352/problems/994805453203030016 This time you are asked to tell the difference between the lowest grade ...
分类:
其他好文 时间:
2018-09-14 22:55:10
阅读次数:
175