Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. Symbol Value I 1 V 5 X 10 L 50 C 100 D 500 M 1000 For example, two ...
分类:
其他好文 时间:
2019-01-03 00:45:04
阅读次数:
234
class Program { public static void Main() { // Define a provider and two observers. LocationTracker provider = new LocationTracker(); Loc... ...
乘风破浪:LeetCode真题_002_Add Two Numbers ...
分类:
其他好文 时间:
2019-01-02 13:33:05
阅读次数:
169
题解: 大致就是先求出凸包 然后有一个性质就是我们枚举每条边 然后凸包上的点到边的距离是单峰函数(刚开始傻逼的写了点对点) 于是可以two-point-two 为什么是对的呢 因为对于最远点对 我们取一条平行于边的直线,那这条边到那个点的距离就是最远距离 所以这样就是对的 另外我发现求凸包的代码需要 ...
分类:
其他好文 时间:
2019-01-01 23:58:39
阅读次数:
290
Let's say we have two strings: str1 = 'ACDEB' str2 = 'AEBC' We need to find the longest common subsequence, which in this case should be 'AEB'. Using ...
分类:
其他好文 时间:
2019-01-01 23:51:59
阅读次数:
161
Power Strings Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 60872 Accepted: 25166 Description Given two strings a and b we define a*b to ...
分类:
编程语言 时间:
2019-01-01 21:16:09
阅读次数:
277
Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. Symbol Value I 1 V 5 X 10 L 50 C 100 D 500 M 1000 For example, two ...
分类:
其他好文 时间:
2019-01-01 19:55:05
阅读次数:
243
【题目】: 有一个源源不断地吐出整数的数据流,假设你有足够的空间来保存吐出的数。请设计一个名叫MedianHolder的结构,MedianHolder可以随时取得之前吐出的所有数的中位数 【要求】: 1、如果MedianHolder已经保存了吐出的N个数,那么任意时刻将一个新数加入到MedianHo ...
分类:
其他好文 时间:
2019-01-01 16:11:04
阅读次数:
402
Given two arrays of length m and n with digits 0-9 representing two numbers. Create the maximum number of length k <= m + n from digits of the two. Th ...
分类:
编程语言 时间:
2018-12-31 21:59:17
阅读次数:
123
Faster R CNN: Towards Real Time Object Detection with Region Proposal Networks 简介 Faster R CNN是很经典的two stage的目标检测方法,前面看了Selective Search以为在这里可以用到,但是作者 ...
分类:
Web程序 时间:
2018-12-31 20:20:24
阅读次数:
322