orig url: https://accu.org/index.php/journals/255 roperties are a feature of a number of programming languages - Visual Basic and C# are two of them. ...
分类:
编程语言 时间:
2019-08-09 01:18:29
阅读次数:
129
多行字符串使用fstring需要注意每行都要加fstring 如果使用三个双引号 ...
分类:
其他好文 时间:
2019-08-08 13:27:43
阅读次数:
55
LeetCode 160,相交链表,考察的就是链表的知识点。 ...
分类:
其他好文 时间:
2019-08-07 22:27:04
阅读次数:
115
Median Descriptions 给N数字, X1, X2, ... , XN,我们计算每对数字之间的差值:∣Xi - Xj∣ (1 ≤ i < j ≤N). 我们能得到 C(N,2) 个差值,现在我们想得到这些差值之间的中位数。 如果一共有m个差值且m是偶数,那么我们规定中位数是第(m/2) ...
分类:
其他好文 时间:
2019-08-07 18:55:38
阅读次数:
62
Which two are true about the Archive (ARCn) processes? A)They archive redo directly from the redo log buffer. B)They are used during instance recovery ...
分类:
其他好文 时间:
2019-08-07 10:44:48
阅读次数:
126
题目如下: Given two strings text1 and text2, return the length of their longest common subsequence. A subsequence of a string is a new string generated fr ...
分类:
其他好文 时间:
2019-08-06 14:01:01
阅读次数:
81
F. Vanya and Label While walking down the street Vanya saw a label "Hide&Seek". Because he is a programmer, he used & as a bitwise AND for these two w ...
分类:
编程语言 时间:
2019-08-06 13:48:32
阅读次数:
99
题目描述:寻找两个有序数组合并后的中位数,要求算法时间复杂度为O(log(m+n)) 参考官方题解。 说到中位数,两个序列合并后的中位数下标一定是m+n+1/2或中间两位数的平均数。 我们只需要不断地划分两个序列直到找到答案即可,划分序列可以用二分法, 用二分法寻找i,由于左右两部分数量一定相同,所 ...
分类:
其他好文 时间:
2019-08-05 18:59:24
阅读次数:
67
Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. For example, two is written as II in Roman numeral, just two one's ...
分类:
其他好文 时间:
2019-08-05 15:45:05
阅读次数:
87
08/05/2019 Category: Array Problem #: 1. Two Sum: HashMap 15. 3Sum : Set one target and flow from left to right 16. 3Sum Closest : Pretty same as 3Sum ...
分类:
其他好文 时间:
2019-08-05 14:27:36
阅读次数:
109