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
pythonleetcode
二分法解读:704. 二分查找python
二分法:使用二分法的前提:1.数组为有序数组;2.数组中无重复元素.有重复元素也行,不过结果则不唯一两种写法:左闭右闭,左闭右开特别注意边界位置,取等号还是不取等号704.二分查找
pythonleetcode
欢天喜地小姐姐
·
2023-07-15 23:14
leetcode刷题
python
二分法
leetcode
力扣刷题_数组_位运算
文章目录时间复杂度字典list知识点位运算字符串/数组easy1LeetCode-
pythonLeetCode
-python219.存在重复元素IILeetCode-python167.两数之和II-输入有序数组
BlackEyes_SGC
·
2020-10-30 12:55
leetcode
Python Leetcode(680.验证回文字符串)
PythonLeetcode
(680.验证回文字符串)给定一个非空字符串s,最多删除一个字符。判断是否能成为回文字符串。
虎口脱险==
·
2020-09-15 11:14
Python
LeetCode
Python LeetCode(88.合并两个有序数组)
PythonLeetCode
(88.合并两个有序数组)给定两个有序整数数组nums1和nums2,将nums2合并到nums1中,使得num1成为一个有序数组。
虎口脱险==
·
2020-09-15 09:37
Python
LeetCode
Python LeetCode(58.最后一个单词的长度)
PythonLeetCode
(58.最后一个单词的长度)给定一个仅包含大小写字母和空格’’的字符串,返回其最后一个单词的长度。如果不存在最后一个单词,请返回0。
虎口脱险==
·
2020-09-15 05:34
Python
LeetCode
Python LeetCode(35.搜索插入位置)
PythonLeetCode
(35.搜索插入位置)给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。你可以假设数组中无重复元素。
虎口脱险==
·
2020-08-24 09:32
Python
LeetCode
Python Leetcode(665.非递减数列)
PythonLeetcode
(665.非递减数列)给定一个长度为n的整数数组,你的任务是判断在最多改变1个元素的情况下,该数组能否变成一个非递减数列。
虎口脱险==
·
2020-08-24 09:32
Python
LeetCode
Python Leetcode练习二
PythonLeetcode
225.用队列实现栈27.移除元素933.最近的请求次数225.用队列实现栈classMyStack:def__init__(self):"""Initializeyourdatastructurehere
YeeHap
·
2020-08-22 01:19
Python LeetCode(27.移除元素)
PythonLeetCode
(27.移除元素)给定一个数组nums和一个值val,你需要原地移除所有数值等于val的元素,返回移除后数组的新长度。
虎口脱险==
·
2020-08-20 02:16
Python
LeetCode
Python LeetCode(27.移除元素)
PythonLeetCode
(27.移除元素)给定一个数组nums和一个值val,你需要原地移除所有数值等于val的元素,返回移除后数组的新长度。
虎口脱险==
·
2020-08-20 02:15
Python
LeetCode
Python LeetCode(20.有效的括号)
PythonLeetCode
(20.有效的括号)给定一个只包括‘(’,’)’,’{’,’}’,’[’,’]’的字符串,判断字符串是否有效。有效字符串需满足:左括号必须用相同类型的右括号闭合。
虎口脱险==
·
2020-08-19 07:47
Python
LeetCode
Python Leetcode(844.比较含退格的字符串)
PythonLeetcode
(844.比较含退格的字符串)给定S和T两个字符串,当它们分别被输入到空白的文本编辑器后,判断二者是否相等,并返回结果。#代表退格字符。
虎口脱险==
·
2020-08-18 11:21
Python
LeetCode
leetcode第九题:回文数 python
@leetcode中第九题回文数做的过程中遇到的坑
pythonleetcode
第九题:回文数python判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。
mercies
·
2020-08-17 23:10
Python LeetCode(14.最长公共前缀)
PythonLeetCode
(14.最长公共前缀)编写一个函数来查找字符串数组中的最长公共前缀。如果不存在公共前缀,返回空字符串“”。
虎口脱险==
·
2020-08-17 18:41
Python
LeetCode
Python LeetCode(9.回文数)
PythonLeetCode
(9.回文数)判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。
虎口脱险==
·
2020-08-16 08:51
Python
LeetCode
Leetcode 054 螺旋矩阵 python
每天更新一道
pythonleetcode
题,力求讲解清晰准确,客官们可以点赞或者关注。给定一个包含mxn个元素的矩阵(m行,n列),请按照顺时针螺旋顺序,返回矩阵中的所有元素。
我喝酸奶不舔盖
·
2020-08-10 03:35
Python学习
Leetcode
刷题记录python
C++
JAVA
Python LeetCode(1.两数之和)
PythonLeetCode
(1.两数之和)题目:给定一个整数数组nums和一个目标值target,请你在该数组中找出和为目标值的那两个整数,并返回他们的数组下标。你可以假设每种输入只会对应一个答案。
虎口脱险==
·
2020-07-28 09:19
Python
LeetCode
python leetcode 363. Max Sum of Rectangle No Larger Than K
pythonleetcode
363.MaxSumofRectangleNoLargerThanK自己码了代码TLE然后研究了别人的代码成功地将时间复杂度由O(mn)^2降到了nnm*log(m)这里m是行长列长中大的那个假如是列较长那就扫描列利用
Neekity
·
2020-07-14 05:01
leetcode
python
Python LeetCode(67.二进制求和)
PythonLeetCode
(67.二进制求和)给定两个二进制字符串,返回他们的和(用二进制表示)。输入为非空字符串且只包含数字1和0。
虎口脱险==
·
2020-07-13 12:44
Python
LeetCode
pythonLeetcode
88:合并两个有序数组
classSolution:defmerge(self,nums1,m,nums2,n):""":typenums1:List[int]:typem:int:typenums2:List[int]:typen:int:rtype:voidDonotreturnanything,modifynums1in-placeinstead."""#法一:foriinrange(m,len(nums1)):d
堂姐在这儿。
·
2020-06-28 20:53
LeetCode
Python Leetcode(788. 旋转数字)
PythonLeetcode
(788.旋转数字)我们称一个数X为好数,如果它的每位数字逐个地被旋转180度后,我们仍可以得到一个有效的,且和X不同的数。要求每位数字都要被旋转。
虎口脱险==
·
2020-06-26 03:53
Python
LeetCode
Python Leetcode(541.反转字符串II)
PythonLeetcode
(541.反转字符串II)给定一个字符串和一个整数k,你需要对从字符串开头算起的每个2k个字符的前k个字符进行反转。如果剩余少于k个字符,则将剩余的所有全部反转。
虎口脱险==
·
2020-06-26 03:53
Python
LeetCode
Python Leetcode(415.字符串相加)
PythonLeetcode
(415.字符串相加)给定两个字符串形式的非负整数num1和num2,计算它们的和。
虎口脱险==
·
2020-06-26 03:53
Python
LeetCode
Python Leetcode(504.七进制数)
PythonLeetcode
(504.七进制数)给定一个整数,将其转化为7进制,并以字符串形式输出。
虎口脱险==
·
2020-06-26 03:53
Python
LeetCode
Python LeetCode(344.反转字符串)
PythonLeetCode
(344.反转字符串)编写一个函数,其作用是将输入的字符串反转过来。输入字符串以字符数组char[]的形式给出。
虎口脱险==
·
2020-06-26 03:52
Python
LeetCode
Python Leetcode(892.三维形体的表面积)
PythonLeetcode
(892.三维形体的表面积)在N*N的网格上,我们放置一些1*1*1的立方体。每个值v=grid[i][j]表示v个正方体叠放在单元格(i,j)上。返回最终形体的表面积。
虎口脱险==
·
2020-06-26 03:52
Python
LeetCode
Python Leetcode(867.转置矩阵)
PythonLeetcode
(867.转置矩阵)给定一个矩阵A,返回A的转置矩阵。矩阵的转置是指将矩阵的主对角线翻转,交换矩阵的行索引与列索引。
虎口脱险==
·
2020-06-26 03:52
Python
LeetCode
Python Leetcode(1021.删除最外层的括号)
PythonLeetcode
(1021.删除最外层的括号)有效括号字符串为空("")、"("+A+“)”或A+B,其中A和B都是有效的括号字符串,+代表字符串的连接。
虎口脱险==
·
2020-06-26 03:52
Python
LeetCode
Python Leetcode(453.分发饼干)
PythonLeetcode
(453.分发饼干)假设你是一位很棒的家长,想要给你的孩子们一些小饼干。但是,每个孩子最多只能给一块饼干。
虎口脱险==
·
2020-06-26 03:52
Python
LeetCode
Python LeetCode(204.计数质数)
PythonLeetCode
(204.计数质数)统计所有小于非负整数n的质数的数量。示例:输入:10输出:4解释:小于10的质数一共有4个,它们是2,3,5,7。
虎口脱险==
·
2020-06-26 03:52
Python
LeetCode
Python Leetcode(852.山脉数组)
PythonLeetcode
(852.山脉数组)我们把符合下列属性的数组A称作山脉:A.length>=3存在0A[i+1]>...
虎口脱险==
·
2020-06-26 03:52
Python
LeetCode
Python LeetCode(349.两个数组的交集)
PythonLeetCode
(349.两个数组的交集)给定两个数组,编写一个函数来计算它们的交集。
虎口脱险==
·
2020-06-26 03:52
Python
LeetCode
Python Leetcode(836.矩形重叠)
PythonLeetcode
(836.矩形重叠)矩形以列表[x1,y1,x2,y2]的形式表示,其中(x1,y1)为左下角的坐标,(x2,y2)是右上角的坐标。如果相交的面积为正,则称两矩形重叠。
虎口脱险==
·
2020-06-26 03:52
Python
LeetCode
Python Leetcode(189.旋转数组)
PythonLeetcode
(189.旋转数组)给定一个数组,将数组中的元素向右移动k个位置,其中k是非负数。
虎口脱险==
·
2020-06-26 03:52
Python
LeetCode
Python LeetCode(345.反转字符串中的元音字母)
PythonLeetCode
(345.反转字符串中的元音字母)编写一个函数,以字符串作为输入,反转该字符串中的元音字母。
虎口脱险==
·
2020-06-21 06:34
Python
LeetCode
Python LeetCode(66.加一)
PythonLeetCode
(66.加一)给定一个由整数组成的非空数组所表示的非负整数,在该数的基础上加一。最高位数字存放在数组的首位,数组中每个元素只存储一个数字。
虎口脱险==
·
2019-04-04 13:08
Python
LeetCode
Python LeetCode(26.删除排序数组中的重复项)
PythonLeetCode
(26.删除排序数组中的重复项)给定一个排序数组,你需要在原地删除重复出现的元素,使得每个元素只出现一次,返回移除后数组的新长度。
虎口脱险==
·
2019-03-31 19:23
Python
LeetCode
上一页
1
下一页
按字母分类:
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
其他