set verify off column file_name format a50 word_wrapped column smallest format 999,990 heading "Smallest|Size|Poss." column currsize format 999,990 he ...
分类:
数据库 时间:
2018-08-03 00:53:57
阅读次数:
238
传送门 Description Input Output Translation · 给定k个长度为k的数组,把每个数组选一个元素加起来,这样共有kk种可能的答案,求最小的k个 Sample Input Sample Output Hint k<=750 Solution 显然可以一行一行做,同时如 ...
分类:
其他好文 时间:
2018-08-01 12:12:36
阅读次数:
144
参考: eval/exec/compile的区别:https://stackoverflow.com/questions/2220699/whats-the-difference-between-eval-exec-and-compile-in-python pickle的使用: https://p ...
分类:
编程语言 时间:
2018-08-01 12:04:15
阅读次数:
161
Description A sequence of number is called arithmetic if it consists of at least three elements and if the difference between any two consecutive elem ...
分类:
其他好文 时间:
2018-07-31 13:41:48
阅读次数:
127
1.题目 === Given an unsorted integer array, find the smallest missing positive integer. Note: Your algorithm should run in O(n) time and uses constant e ...
分类:
其他好文 时间:
2018-07-28 22:23:09
阅读次数:
152
1. Get_ST : Accepted: Wrong Answer : Difference : 1<<(j-1) $\Longrightarrow $ 1<<j ...
分类:
其他好文 时间:
2018-07-27 21:40:50
阅读次数:
134
计算导数 计算导数的方法有:符号导数,有限差分,自动微分等。本文只介绍有限差分和自动微分 有限差分 有限差分就是用有限步长下函数变化率来近似代替导数。 one side difference $$\frac{\partial f}{\partial x_i}(x) \approx \frac{f(x ...
分类:
其他好文 时间:
2018-07-27 19:12:44
阅读次数:
224
Short answer: For verifying ISOs, there is no practical difference, use whichever you want, as long as you trust the source providing the sums. MD5 is ...
分类:
其他好文 时间:
2018-07-26 18:28:04
阅读次数:
651
Given a list of 24-hour clock time points in "Hour:Minutes" format, find the minimum minutes difference between any two time points in the list. Examp ...
分类:
其他好文 时间:
2018-07-25 20:42:31
阅读次数:
163
这道题的关键在于知道每个节点的深度,可以用哈希表保存的前提下,怎么找出公共最小的父节点。方法是,如果当前node左右节点都有深度最大节点,返回当前node,如果只有左边有,返回node的左节点,反之返回右节点。也就是以下的java代码 public TreeNode answer(TreeNode ...
分类:
其他好文 时间:
2018-07-15 22:14:44
阅读次数:
134