题目: 583. Delete Operation for Two Strings Medium 61517FavoriteShare 583. Delete Operation for Two Strings Medium 61517FavoriteShare Medium Given two w ...
分类:
其他好文 时间:
2019-02-12 12:52:24
阅读次数:
166
使用示例:sort -k1,1nr xxxfile 需要指定起始列和结束列,否则可能排序错误 sort命令应用于中文时需要在sort前设置环境变量(以兼容C语言的标准): LC_COLLATE=C 否则sort将忽略文本中的标点符号,将仅有标点符号差异的key看做相同。 使用tab做分隔符: sor ...
分类:
其他好文 时间:
2019-02-11 21:22:36
阅读次数:
244
题目要求 Given a non-empty, singly linked list with head node head, return a middle node of linked list. If there are two middle nodes, return the second ...
分类:
其他好文 时间:
2019-02-11 10:46:05
阅读次数:
178
On a broken calculator that has a number showing on its display, we can perform two operations: Double: Multiply the number on the display by 2, or; D ...
分类:
其他好文 时间:
2019-02-11 01:07:39
阅读次数:
202
Given an array equations of strings that represent relationships between variables, each string equations[i] has length 4 and takes one of two differe ...
分类:
其他好文 时间:
2019-02-10 20:31:42
阅读次数:
135
Given two integers A and B, return any string S such that: S has length A + B and contains exactly A 'a' letters, and exactly B 'b' letters; The subst ...
分类:
其他好文 时间:
2019-02-10 09:28:27
阅读次数:
132
https://leetcode.com/problems/longest-uncommon-subsequence-i/ Given a group of two strings, you need to find the longest uncommon subsequence of this ...
分类:
其他好文 时间:
2019-02-09 19:22:08
阅读次数:
174
<!-- flowchart 箭头图标 勿删 --> 引言 需要调用另一个系统的提供的webservice接口,但是调用之后总是报错,用SoapUI测试接口却没有问题; 那就应该是代码的问题了,但是同样的代码也调用过其他系统却没有问题,不过最终还是解决了,现在记录一下; 问题 Exception i ...
分类:
Web程序 时间:
2019-02-09 13:19:36
阅读次数:
216
Two Stage 的精度优势 二阶段的分类:二步法的第一步在分类时,正负样本是极不平衡的,导致分类器训练比较困难,这也是一步法效果不如二步法的原因之一,也是focal loss的motivation。而第二步在分类时,由于第一步滤掉了绝大部分的负样本,送给第二步分类的proposal中,正负样本比 ...
分类:
其他好文 时间:
2019-02-09 12:09:21
阅读次数:
459
Description First we define: (1) $lcm(a,b)$, the least common multiple of two integers $a$ and $b$, is the smallest positive integer that is divisible ...
分类:
其他好文 时间:
2019-02-09 12:05:06
阅读次数:
158