最新 最热

Leetcode 153 Find Minimum in Rotated Sorted Array

Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2). Find the minimum element. You ...

2018-01-12
1

Leetcode 152 Maximum Product Subarray

Find the contiguous subarray within an array (containing at least one number) which has the largest product. For example, given the array [2,3,-2,4], the con...

2018-01-12
0

Leetcode 216. Combination Sum III

Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combination should be a unique ...

2018-01-12
0

Leetcode 215. Kth Largest Element in an Array

Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element. For example, Gi...

2018-01-12
1

496. Next Greater Element I(Stack-Easy)

该文是关于给定两个数组nums1和nums2,找到所有nums1中的元素对应nums2位置的下一个更大的元素。如果nums1中没有元素,则找不到对应位置的下一个更大元素,返回-1。对于每个元素,需要记录其对应的最大值在nums2中的位置。如...

2018-01-08
1

Excel基础

根据用户提供的文章内容,撰写摘要总结。

2018-01-04
1

[LeetCode] 129. Sum Root to Leaf Numbers

该文是关于二叉树的问题,给定一个代表数字的树,需要求出从根结点到叶子结点的所有路径的和。和Path Sum II类似,只不过需要累加的是每个路径代表的数字。通过递归的方式,对每个结点进行遍历,如果该结点有左右子结点,则递归...

2018-01-03
1

LWC 53:695. Max Area of Island

LWC 53:695. Max Area of Island传送门:695. Max Area of IslandProblem: Given a non-empty 2D array grid

2018-01-02
1

LWC 56:719. Find K-th Smallest Pair Distance

腾讯云开发者社区是腾讯云官方开发者社区,致力于打造开发者的技术分享型社区。提供专栏,问答,沙龙等产品和服务,汇聚海量精品云计算使用和开发经验,致力于帮助开发者快速成长与发展,营造开放的云计算技术生态圈。...

2018-01-02
1

LWC 58:724. Find Pivot Index

该文介绍了LWC 58:724. Find Pivot Index的问题,给定一个整数数组,返回该数组的“pivot”索引。如果没有这样的索引,则返回-1。如果存在多个“pivot”索引,则返回最接近左侧的“pivot”索引。该算法的时间复杂度为O(n),空间...

2018-01-02
0