Description: Given an integer array arr and an integer k, modify the array by repeating it k times. For example, if arr = [1, 2] and k = 3 then the mo ...
分类:
其他好文 时间:
2020-01-06 21:01:13
阅读次数:
108
1. ClickHouse 查询时,报错:Memory limit (for query) exceeded: would use 9.38 GiB (attempt to allocate chunk of 135439453 bytes), maximum: 9.31 GiB 1.1 Click ...
分类:
其他好文 时间:
2020-01-06 19:37:45
阅读次数:
598
https://leetcode.com/problems/path-sum-iii/ https://leetcode.com/problems/path-sum-iv/ https://leetcode.com/problems/maximum-product-of-three-numbers/ ...
分类:
其他好文 时间:
2020-01-05 11:39:50
阅读次数:
78
Maximum Subarray DP问题 全称(Dynamic Programming) https://www.freecodecamp.org/news/follow these steps to solve any dynamic programming interview problem ...
分类:
其他好文 时间:
2020-01-04 22:37:30
阅读次数:
95
题目如下: Given n boxes, each box is given in the format [status, candies, keys, containedBoxes] where: status[i]: an integer which is 1 if box[i] is open ...
分类:
其他好文 时间:
2020-01-04 22:20:05
阅读次数:
86
非极大抑制(Non-maximum suppression)python代码实现原创Butertfly 发布于2018-11-20 18:48:57 阅读数 293 收藏展开定位一个物体,最后算法就找出了一堆的方框,我们需要判别哪些矩形框是没用的。非极大值抑制:先假设有6个矩形框,根据分类器类别分类 ...
分类:
编程语言 时间:
2020-01-04 14:08:44
阅读次数:
130
在打包我自己的angular项目时出现了错误 ERROR in Child compilation failed:undefinedERROR in budgets, maximum exceeded for F:/angular/demo/mjcomm/src/app/editor/editor. ...
分类:
其他好文 时间:
2020-01-02 15:24:58
阅读次数:
354
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-sca ...
分类:
Web程序 时间:
2019-12-31 18:56:49
阅读次数:
239
题目描述:给一个二叉树,返回该二叉树的最大深度 Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root nod ...
分类:
其他好文 时间:
2019-12-30 09:21:14
阅读次数:
77
树 基本概念 1.最多一个先驱 但可能有多个后继 表示具有层次的分支关系 2.Siblings(兄弟): nodes share the same parent Degree(树的扇出) of a tree: the maximum number of its node. 3.深度为最大层数 第i层 ...
分类:
其他好文 时间:
2019-12-29 22:14:09
阅读次数:
85