E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Explanation
深度学习:感受野、卷积,反池化,反卷积,卷积可解释性,CAM ,G_CAM,为什么使用CNN替代RNN?
(篇二:万金油LIME):http://bindog.github.io/blog/2018/02/11/model-
explanation
-2/卷积和反卷积:https://blog.csdn.net
work_coder
·
2020-06-29 01:14
机器学习概要
深度学习概要
warning C4819
explanation
2019独角兽企业重金招聘Python工程师标准>>>Youmaymeetbelowerrorsbefore:errorC2220:warningtreatedaserror-no'object'filegeneratedwarningC4819:Thefilecontainsacharacterthatcannotberepresentedinthecurrentcodepage(936).Sa
weixin_34362875
·
2020-06-28 18:00
LeetCode 53 Maximum Subarray 最大子数组
containingatleastonenumber)whichhasthelargestsumandreturnitssum.Example:Input:[-2,1,-3,4,-1,2,1,-5,4],Output:6
Explanation
weixin_34018202
·
2020-06-28 09:38
leetCode刷题(使用链表做加法)
Input:(2->4->3)+(5->6->4)Output:7->0->8
Explanation
:342+465=807.关键是获取最后一个node节点/***Definitionforsingly-linkedlist
weixin_33830216
·
2020-06-28 06:59
Find Leaves of Binary Tree
Collectandremoveallleaves,repeatuntilthetreeisempty.Example:Givenbinarytree1/\23/\45Returns[4,5,3],[2],[1].
Explanation
weixin_33725807
·
2020-06-28 04:04
0343. Integer Break (M)
breakitintothesumofatleasttwopositiveintegersandmaximizetheproductofthoseintegers.Returnthemaximumproductyoucanget.Example1:Input:2Output:1
Explanation
墨云黑
·
2020-06-28 03:00
leetCode题解之根据字符出现的频率排序
Givenastring,sortitindecreasingorderbasedonthefrequencyofcharacters.Example1:Input:"tree"Output:"eert"
Explanation
weixin_30764883
·
2020-06-28 00:00
[LeetCode] 907. Sum of Subarray Minimums 子数组最小值之和
contiguous)subarrayofA.Sincetheanswermaybelarge,returntheanswermodulo10^9+7.Example1:Input:[3,1,2,4]Output:17
Explanation
weixin_30699235
·
2020-06-27 23:42
[LeetCode] 53. Maximum Subarray 最大子数组
containingatleastonenumber)whichhasthelargestsumandreturnitssum.Example:Input:[-2,1,-3,4,-1,2,1,-5,4],Output:6
Explanation
weixin_30682127
·
2020-06-27 23:49
66. Plus One
description:给vector表示的数字+1Note:Example:Example1:Input:[1,2,3]Output:[1,2,4]
Explanation
:Thearrayrepresentstheinteger123
weixin_30362801
·
2020-06-27 18:09
050 Pow(x, n)
Example:Input:2.00000,10Output:1024.00000Input:2.10000,3Output:9.26100Input:2.00000,-2Output:0.25000
Explanation
烟雨醉尘缘
·
2020-06-27 06:13
697. Degree of an Array
算出degree相同的最小子列表.degree是一个列表中出现相同元素的最大次数Example1:Input:[1,2,2,3,1]Output:2
Explanation
:Theinputarrayhasadegreeof2becausebothelements1and2appeartwice.Ofthesubarraysthathavethesamedegree
comboo
·
2020-06-27 05:05
软件测试理论题目(二)
一、单选题1.下列属于需求规格说明书检查要点的是()A、充分性B、相似性C、完整性D、不可修改性[
EXPLANATION
]:C2.下列哪一项不属于软件测试的阶段()A、测试计划B、测试设计C、回归测试D
Wowda
·
2020-06-26 23:43
软件测试理论
软件测试理论题目(一)
[
EXPLANATION
]:答案:评错度量评错:在特定的条件下运行系统或者构件,观察或记录结果,对系统的某个方面做出评价。度量:分析某个软件项以发现现存的与要求的条件之差别。
Wowda
·
2020-06-26 23:43
软件测试理论
数组的最大乘积子序列
findthecontiguoussubarraywithinanarray(containingatleastonenumber)whichhasthelargestproduct.Example1:Input:[2,3,-2,4]Output:6
Explanation
江上渔者21号
·
2020-06-26 22:06
leetcode
[LeetCode]3. Longest Substring Without Repeating Characters无重复字符的最长子串
Givenastring,findthelengthofthelongestsubstringwithoutrepeatingcharacters.Example1:Input:"abcabcbb"Output:3
Explanation
jchen104
·
2020-06-26 22:55
Google 面试题分析 | 字典里面的最长单词
样例Ⅰ.Input:words=["w","wo","wor","worl","world"]Output:"world"
Explanation
:“world”可通过”
汤高
·
2020-06-26 17:45
算法面试题
求数组最大子段和
给定一个数组,求这个数组中最大连续子段和:例如:Input:[-2,1,-3,4,-1,2,1,-5,4],Output:6
Explanation
:[4,-1,2,1]hasthelargestsum=
jing1008-wang
·
2020-06-26 11:41
一丢丢算法
每天(?)一道Leetcode(16) Rotate Array
RotateArrayGivenanarray,rotatethearraytotherightbyksteps,wherekisnon-negative.即给定一个数组,和正整数,将数组元素向右移动步举个例子:Input:andOutput:
Explanation
失业生1981
·
2020-06-26 11:38
Leetcode 152. Maximum Product Subarray vector二维数组初始化赋值复习
findthecontiguoussubarraywithinanarray(containingatleastonenumber)whichhasthelargestproduct.Example1:Input:[2,3,-2,4]Output:6
Explanation
Heisenberg-William
·
2020-06-26 07:29
Leetcode
LeetCode-1262. Greatest Sum Divisible by Three
weneedtofindthemaximumpossiblesumofelementsofthearraysuchthatitisdivisiblebythree.Example1:Input:nums=[3,6,5,1,8]Output:18
Explanation
ReignsDu
·
2020-06-26 05:55
LeetCode
leetcode_453. Minimum Moves to Equal Array Elements 移动最小步数使数组中各数字相等
findtheminimumnumberofmovesrequiredtomakeallarrayelementsequal,whereamoveisincrementingn-1elementsby1.Example:Input:[1,2,3]Output:3
Explanation
你猜_哈哈
·
2020-06-26 04:10
jQuery回调方法
详情可参看阮一峰老师的这篇文章http://www.ruanyifeng.com/blog/2011/08/a_detailed_
explanation
_of_jquery_deferred_object.html
Marco_Deng
·
2020-06-25 23:36
LeetCode 56. Merge Intervals 合并区间(Java)
mergealloverlappingintervals.Example1:Input:[[1,3],[2,6],[8,10],[15,18]]Output:[[1,6],[8,10],[15,18]]
Explanation
volador_r
·
2020-06-25 21:54
LeetCode
LeetCode 50. Pow(x, n) Pow(x, n)(Java)
2.00000,10Output:1024.00000Example2:Input:2.10000,3Output:9.26100Example3:Input:2.00000,-2Output:0.25000
Explanation
volador_r
·
2020-06-25 21:54
LeetCode
LeetCode 3. Longest Substring Without Repeating Characters 无重复字符的最长子串(Java)
Givenastring,findthelengthofthelongestsubstringwithoutrepeatingcharacters.Example1:Input:“abcabcbb”Output:3
Explanation
volador_r
·
2020-06-25 21:21
LeetCode
LeetCode 258. Add Digits 各位相加(Java)
Givenanon-negativeintegernum,repeatedlyaddallitsdigitsuntiltheresulthasonlyonedigit.Example:Input:38Output:2
Explanation
volador_r
·
2020-06-25 21:21
LeetCode
LeetCode 204. Count Primes 计数质数 (Java)
题目:Countthenumberofprimenumberslessthananon-negativenumber,n.Example:Input:10Output:4
Explanation
:Thereare4primenumberslessthan10
volador_r
·
2020-06-25 21:50
LeetCode
LeetCode 191. Number of 1 Bits 位1的个数(Java)
Writeafunctionthattakesanunsignedintegerandreturnthenumberof‘1’bitsithas(alsoknownastheHammingweight).Example1:Input:00000000000000000000000000001011Output:3
Explanation
volador_r
·
2020-06-25 21:49
LeetCode
LeetCode 190. Reverse Bits 颠倒二进制位(Java)
Reversebitsofagiven32bitsunsignedinteger.Example1:Input:00000010100101000001111010011100Output:00111001011110000010100101000000
Explanation
volador_r
·
2020-06-25 21:49
LeetCode
LeetCode 172. Factorial Trailing Zeroes 阶乘后的零(Java)
Example1:Input:3Output:0
Explanation
:3!=6,notrailingzero.Example2:Input:5Output:1
Explanation
:5!
volador_r
·
2020-06-25 21:18
LeetCode
LeetCode 414. Third Maximum Number (Java)
returnthethirdmaximumnumberinthisarray.Ifitdoesnotexist,returnthemaximumnumber.ThetimecomplexitymustbeinO(n).Example1:Input:[3,2,1]Output:1
Explanation
volador_r
·
2020-06-25 21:46
LeetCode
LeetCode 53. Maximum Subarray (Java)
containingatleastonenumber)whichhasthelargestsumandreturnitssum.Example:Input:[-2,1,-3,4,-1,2,1,-5,4],Output:6
Explanation
volador_r
·
2020-06-25 21:45
LeetCode
LeetCode 189. Rotate Array (Java)
rotatethearraytotherightbyksteps,wherekisnon-negative.Example1:Input:[1,2,3,4,5,6,7]andk=3Output:[5,6,7,1,2,3,4]
Explanation
volador_r
·
2020-06-25 21:45
LeetCode
PTA 1012 数字分类
Explanation
将每次输入的数字mod5然后分类求出对应要求的结果然后输出即可。
JackyFuu
·
2020-06-25 15:16
PTA
PTA1011 A+B 和 C
explanation
本题的注意点在于数据类型长度的辨析。
JackyFuu
·
2020-06-25 15:15
PTA
给定一个大小为n的非空整数数组,找出使所有数组元素相等所需的最小移动数,其中移动将n-1元素增加1
题干leetcode453.MinimumMovestoEqualArrayElements三种语言解Example:Input:[1,2,3]Output:3
Explanation
:Onlythreemovesareneeded
小松与蘑菇
·
2020-06-25 12:08
#
线性结构
0032. Longest Valid Parentheses (H)
'and')',findthelengthofthelongestvalid(well-formed)parenthesessubstring.Example1:Input:"(()"Output:2
Explanation
墨云黑
·
2020-06-25 04:00
0032. Longest Valid Parentheses (H)
'and')',findthelengthofthelongestvalid(well-formed)parenthesessubstring.Example1:Input:"(()"Output:2
Explanation
墨云黑
·
2020-06-25 04:00
LeetCode-Perfect Squares
findtheleastnumberofperfectsquarenumbers(forexample,1,4,9,16,…)whichsumton.Example1:Input:n=12Output:3
Explanation
BeHelium
·
2020-06-25 01:55
LeetCode
LeetCode-Binary Tree Right Side View
returnthevaluesofthenodesyoucanseeorderedfromtoptobottom.Example:Input:[1,2,3,null,5,null,4]Output:[1,3,4]
Explanation
BeHelium
·
2020-06-25 01:24
LeetCode
【LeetCode】【152. Maximum Product Subarray】(python版)
findthecontiguoussubarraywithinanarray(containingatleastonenumber)whichhasthelargestproduct.Example1:Input:[2,3,-2,4]Output:6
Explanation
一颗随风而倒的墙头草
·
2020-06-25 00:03
数组
LeetCode
LeetCode159:Longest Substring with At Most Two Distinct Characters
findthelengthofthelongestsubstringtthatcontainsatmost2distinctcharacters.Example1:Input:"eceba"Output:3
Explanation
励志学好数据结构
·
2020-06-24 14:40
LeetCode
LeetCode——3. Longest Substring Without Repeating Characters
Example1:Input:“abcabcbb”Output:3
Explanation
:Theansweris“abc”,withth
liangyy75
·
2020-06-24 12:55
LeetCode算法实战
LeetCode 485. Max Consecutive Ones
LeetCode485Givenabinaryarray,findthemaximumnumberofconsecutive1sinthisarray.Example1:Input:[1,1,0,1,1,1]Output:3
Explanation
cb_guo
·
2020-06-24 08:01
121. Best Time to Buy and Sell Stock 股票最佳买入和卖出时间
Input:[7,1,5,3,6,4]Output:5
Explanation
:Buyonday2(price=1)andsellonday5(price=6),profit=6-1=5.Not7-1=6
李白-2017
·
2020-06-24 08:07
leetcode
array
122. Best Time to Buy and Sell Stock II 股票最佳买入和卖出时间
例如:Input:[7,1,5,3,6,4]Output:7
Explanation
:Buyonday2(price=1)andsellonday3(price=5),p
李白-2017
·
2020-06-24 08:07
leetcode
array
66. Plus One 把数组看成一个数值进行加1
例如:Input:[1,2,3]Output:[1,2,4]
Explanation
:Thearrayrepresentstheinteger123.难度:【easy】把[1,2,3]看着数值123,对它加
李白-2017
·
2020-06-24 08:06
leetcode
array
53. Maximum Subarray 寻找sum最大的子数组
containingatleastonenumber)whichhasthelargestsumandreturnitssum.例子:Input:[-2,1,-3,4,-1,2,1,-5,4],Output:6
Explanation
李白-2017
·
2020-06-24 08:35
leetcode
array
128. Longest Consecutive Sequence 寻找最长连续子数组
例子1:Input:[100,4,200,1,3,2]Output:4
Explanation
:Thelongestconsecutiveelementssequenceis[1,2,3,4].Thereforeitslengthis4
李白-2017
·
2020-06-24 08:34
leetcode
上一页
11
12
13
14
15
16
17
18
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他