有了私服当然就得备份数据了,手机照片,工作目录,经典电影之类的,DT时代数据无价。 syncthing Syncthing is a continuous file synchronization program. It synchronizes files between two or more ...
分类:
其他好文 时间:
2020-04-07 22:42:29
阅读次数:
332
Problem : Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. Return the m ...
分类:
其他好文 时间:
2020-04-07 22:40:21
阅读次数:
74
题目描述: 给定两个大小为 m 和 n 的有序数组 nums1 和 nums2。 请你找出这两个有序数组的中位数,并且要求算法的时间复杂度为 O(log(m + n))。 你可以假设 nums1 和 nums2 不会同时为空。 示例 1: nums1 = [1, 3]nums2 = [2] 则中位数 ...
分类:
其他好文 时间:
2020-04-06 17:09:52
阅读次数:
87
Given 2 lists a and b. Each element is a pair of integers where the first integer represents the unique id and the second integer represents a value. ...
分类:
其他好文 时间:
2020-04-06 10:06:59
阅读次数:
72
Given a list of positive integers nums and an int target, return indices of the two numbers such that they add up to a target - 30. Conditions: You wi ...
分类:
其他好文 时间:
2020-04-06 09:49:05
阅读次数:
76
Given a non empty array of integers, every element appears twice except for one. Find that single one. Note: Your algorithm should have a linear runti ...
分类:
其他好文 时间:
2020-04-06 09:48:06
阅读次数:
63
We have a list of points on the plane. Find the K closest points to the origin (0, 0). (Here, the distance between two points on a plane is the Euclid ...
分类:
其他好文 时间:
2020-04-06 09:25:29
阅读次数:
73
Problem : Given an integer, write a function to determine if it is a power of two. Example 1: Example 2: Example 3: `` Input: 218 Output: false c bool ...
分类:
其他好文 时间:
2020-04-06 00:03:04
阅读次数:
83
题面: There are n courses in the course selection system of Marjar University. The i-th course is described by two values: happiness Hi and credit Ci. I ...
分类:
其他好文 时间:
2020-04-05 22:35:03
阅读次数:
93
Problem : Remove all elements from a linked list of integers that have value val. Example: 思路 : Solution (C++) : 性能 : Runtime: 44 ms Memory Usage: 10. ...
分类:
其他好文 时间:
2020-04-05 13:36:39
阅读次数:
67