码迷,mamicode.com
首页 >  
搜索关键字:largest    ( 1413个结果
215. 数组中的第K个最大元素
https://leetcode-cn.com/problems/kth-largest-element-in-an-array/ ...
分类:编程语言   时间:2020-01-07 13:18:53    阅读次数:89
[LeetCode] 747. Largest Number At Least Twice of Others
这道题思路很简单,就是在一个loop下找最大的和第二大的数值。记住,python最小的数值是-sys.maxsize-1 ...
分类:其他好文   时间:2020-01-06 09:48:25    阅读次数:66
oracle查询表空间的空间占用情况
select a.tablespace_name,a.bytes bytes_used,b.largest,round(((a.bytes - b.bytes)/a.bytes)*100,2) percent_used from (select tablespace_name,sum(bytes) ...
分类:数据库   时间:2020-01-05 00:17:23    阅读次数:104
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. Example ...
分类:其他好文   时间:2020-01-03 21:27:13    阅读次数:104
[LC] 221. Maximal Square
Given a 2D binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area. Example: Input: 1 0 1 0 0 1 0 1 1 1 ...
分类:其他好文   时间:2019-12-27 13:47:34    阅读次数:76
Boggle Game
Description Given a board which is a 2D matrix includes a-z and dictionary dict, find the largest collection of words on the board, the words can not ...
分类:其他好文   时间:2019-12-22 00:39:36    阅读次数:70
Maximum Product Subarray
Description Find the contiguous subarray within an array (containing at least one number) which has the largest product. Description Description Find ...
分类:其他好文   时间:2019-12-21 22:54:06    阅读次数:97
Maximal Square
Description Description Given a 2D binary matrix filled with 0's and 1's, find the largest square containing all 1's and return its area. Example Exam ...
分类:其他好文   时间:2019-12-21 22:34:38    阅读次数:87
Maximal Square II
Description Description Given a 2D binary matrix filled with 0's and 1's, find the largest square which diagonal is all 1 and others is 0. Only consid ...
分类:其他好文   时间:2019-12-21 22:24:34    阅读次数:67
Maximum Subarray
Description Description Given an array of integers, find a contiguous subarray which has the largest sum. The subarray should contain at least one num ...
分类:其他好文   时间:2019-12-21 22:17:06    阅读次数:99
1413条   上一页 1 ... 6 7 8 9 10 ... 142 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!