最新 最热

Java8-对List转换Map、分组、求和、过滤

在java8之后我们list转map再也不用循环put到map了,我们用lambda表达式,使用stream可以一行代码解决,下面我来简单介绍list转map的几种方式,和转为map后对map进行分组、求和、过滤等操作。...

2019-06-26
1

LeetCode - 007

https://leetcode.com/problems/reverse-integer/

2019-06-03
1

LWC 74: 795. Number of Subarrays with Bounded Maximum

思路: 先关注一波性质,在L和R之间的最大值val符合 val in [L, R], 可以转为:求区间内的任意值x , x in [L, R]。所以,把数组的每个位置当作起点,如A = [2, 1, 4, 3]:...

2019-05-26
1

Set Intersection Size At Least Two

思路: 在选择区间中的元素时,我们可以随意选, 但随意选的后果是不能让set最优,所以可以从侧面反映出如果有【规则】的选择,可能达到全局最优。一个思路:对end进行排序,这样我们就能根据end进行规则的选择了。 1. 很明显,对...

2019-05-26
1

Integer to Roman

1. Description2. Solutionclass Solution {public: string intToRoman(int num) { const i

2019-05-25
0

CodeForces 733B Parade

B. Parade time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output Very soon there will be a parade of vict...

2019-04-09
1

【每天一道编程系列-2018.2.22】(Ans)

Implement atoi to convert a string to an integer.   Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and a...

2019-03-14
0

118. Pascal's Triangle(暴力求解法)

Given a non-negative integer numRows, generate the first numRows of Pascal's triangle.

2019-03-14
1