Unified BeginFrame scheduling for Chrome http://goo.gl/D1Qxrr Status: http://crbug.com/401331 and http://crbug.com/416760 Original Author: simonhong@c ...
分类:
其他好文 时间:
2018-12-05 21:53:57
阅读次数:
214
Given an integer array with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target. ...
分类:
其他好文 时间:
2018-12-03 22:58:00
阅读次数:
245
题意:定义一个新运算为两个数A,B上每一位相乘,然后顺次接在一起,现在给定结果C和原来两个数字的长度,要求恢复成原来的数字A,B 若有多解输出A字典序最小的,A相同输出B字典序最小的,无解输出Impossible n,m<=2e5,sigma lenc<=2e6 思路:实际上只需要枚举A的第一位就行 ...
分类:
其他好文 时间:
2018-12-02 20:09:09
阅读次数:
260
Given a non-negative integer num represented as a string, remove k digits from the number so that the new number is the smallest possible. Note: The l ...
分类:
其他好文 时间:
2018-11-29 15:01:13
阅读次数:
143
https://leetcode.com/problems/combinations/ Given two integers n and k, return all possible combinations of k numbers out of 1 ... n. Example: 代码: 看 F ...
分类:
其他好文 时间:
2018-11-25 17:43:23
阅读次数:
142
https://leetcode.com/problems/subsets-ii/ Given a collection of integers that might contain duplicates, nums, return all possible subsets (the power s ...
分类:
其他好文 时间:
2018-11-25 01:20:04
阅读次数:
165
FIREWALL CMD(1) firewall cmd FIREWALL CMD(1) NAME firewall cmd firewalld command line client SYNOPSIS firewall cmd [OPTIONS...] DESCRIPTION firewall c ...
分类:
其他好文 时间:
2018-11-25 00:00:38
阅读次数:
183
https://leetcode.com/problems/permutations-ii/ Given a collection of numbers that might contain duplicates, return all possible unique permutations. E ...
分类:
其他好文 时间:
2018-11-23 20:47:26
阅读次数:
156
换了php的版本准备学习laravel ,结果apache 先复习了一遍............ DocumentRoot "E:/xampp/www"<Directory "E:/xampp/www"> # # Possible values for the Options directive a ...
分类:
Web程序 时间:
2018-11-21 19:39:36
阅读次数:
220
1. 如何判断一个图是二分图(染色问题)leetcode 886 possible bipartition 题解:我们用一个color数组标记点的颜色,然后对每一个点做bfs,如果两个点间有边,并且另外一个点没有被染色,就把另外一个点染色成相反色,如果另外一个点有颜色,而且颜色和当前结点相同,那么肯 ...
分类:
编程语言 时间:
2018-11-21 16:03:55
阅读次数:
258