Given an array A, we can perform a pancake flip: We choose some positive integer k <= A.length, then reverse the order of the first kelements of A. We ...
分类:
其他好文 时间:
2019-01-07 00:19:44
阅读次数:
261
970. Powerful Integers Given two non-negative integers x and y, an integer is powerful if it is equal to x^i + y^j for some integers i >= 0 and j >= 0 ...
分类:
其他好文 时间:
2019-01-06 13:36:04
阅读次数:
151
要死要死,第一题竟然错误8次,心态崩了呀,自己没有考虑清楚,STL用的也不是很熟,一直犯错。 第二题也是在室友的帮助下完成的,心态崩了。 970. Powerful Integers 970. Powerful Integers Given two non-negative integers x a ...
分类:
其他好文 时间:
2019-01-06 13:33:00
阅读次数:
136
从contest-41开始。(一般是10个contest写一篇文章) ...
分类:
其他好文 时间:
2018-12-31 21:53:23
阅读次数:
223
965. Univalued Binary Tree A binary tree is univalued if every node in the tree has the same value. Return true if and only if the given tree is univa ...
分类:
其他好文 时间:
2018-12-30 14:41:08
阅读次数:
129
12月17日,华为云在DCS2.0的基础上,快人一步,抢先推出了新的Redis 5.0产品
分类:
其他好文 时间:
2018-12-25 20:31:24
阅读次数:
144
Given an array A of integers, a ramp is a tuple (i, j) for which i < j and A[i] <= A[j]. The width of such a ramp is j - i. Find the maximum width of ...
分类:
其他好文 时间:
2018-12-24 02:59:49
阅读次数:
228
In a array A of size 2N, there are N+1 unique elements, and exactly one of these elements is repeated N times. Return the element repeated N times. Ex ...
分类:
其他好文 时间:
2018-12-24 02:45:54
阅读次数:
151
961. N-Repeated Element in Size 2N Array In a array A of size 2N, there are N+1 unique elements, and exactly one of these elements is repeated N times ...
分类:
其他好文 时间:
2018-12-23 13:55:05
阅读次数:
133
问题: 重复 N 次的元素 在大小为 2N 的数组 A 中有 N+1 个不同的元素,其中有一个元素重复了 N 次。 返回重复了 N 次的那个元素。 示例 1: 示例 2: 示例 3: 提示: 链接:https://leetcode-cn.com/contest/weekly-contest-116/ ...
分类:
其他好文 时间:
2018-12-23 12:44:05
阅读次数:
174