码迷,mamicode.com
首页 >  
搜索关键字:leetcode    ( 34993个结果
[LeetCode] 1898. Maximum Number of Removable Characters
You are given two strings s and p where p is a subsequence of s. You are also given a distinct 0-indexed integer array removable containing a subset o ...
分类:其他好文   时间:2021-06-15 18:05:39    阅读次数:0
每日LeetCode - 125. 验证回文串(Python 3)
Python3 双指针 class Solution: def isPalindrome(self, s: str) -> bool: n = len(s) left, right = 0, n - 1 while left < right: while left < right and not s ...
分类:编程语言   时间:2021-06-13 10:55:47    阅读次数:0
7. 加一
加一 [原题链接](初级算法 - LeetBook - 力扣(LeetCode)全球极客挚爱的技术成长平台 (leetcode-cn.com)) 给定一个由 整数 组成的 非空 数组所表示的非负整数,在该数的基础上加一。 最高位数字存放在数组的首位, 数组中每个元素只存储单个数字。 你可以假设除了整 ...
分类:其他好文   时间:2021-06-13 10:24:49    阅读次数:0
leetcode 1283. 使结果不超过阈值的最小除数
给你一个整数数组 nums 和一个正整数 threshold ,你需要选择一个正整数作为除数,然后将数组里每个数都除以它,并对除法结果求和。 请你找出能够使上述结果小于等于阈值 threshold 的除数中 最小 的那个。 每个数除以除数后都向上取整,比方说 7/3 = 3 , 10/2 = 5 。 ...
分类:其他好文   时间:2021-06-13 10:24:06    阅读次数:0
LeetCode 目标和(28)(中等)
问题描述: 给你一个整数数组 nums 和一个整数 target 。 向数组中的每个整数前添加 '+' 或 '-' ,然后串联起所有整数,可以构造一个 表达式 : 例如,nums = [2, 1] ,可以在 2 之前添加 '+' ,在 1 之前添加 '-' ,然后串联起来得到表达式 "+2-1" 。 ...
分类:其他好文   时间:2021-06-13 09:56:52    阅读次数:0
[LeetCode] 系统刷题9_Backtracking
有待总结。 Binary Search: 633, Sum of Square Numbers 475, Heaters 744, Find Smallest Letter Greater than target(LC submissions from original session) 427?? ...
分类:其他好文   时间:2021-06-13 09:48:38    阅读次数:0
[LeetCode] 1877. Minimize Maximum Pair Sum in Array
The pair sum of a pair (a,b) is equal to a + b. The maximum pair sum is the largest pair sum in a list of pairs. For example, if we have pairs (1,5),  ...
分类:其他好文   时间:2021-06-13 09:41:48    阅读次数:0
[LeetCode] 1784. 检查二进制字符串字段
给你一个二进制字符串 s ,该字符串 不含前导零 。 如果 s 最多包含 一个由连续的 '1' 组成的字段 ,返回 true??? 。否则,返回 false 。 示例 1: 输入:s = "1001"输出:false解释:字符串中的 1 没有形成一个连续字段。示例 2: 输入:s = "110"输出 ...
分类:其他好文   时间:2021-06-13 09:23:15    阅读次数:0
二分法边界思考(续)
二分法边界思考(续) 本题思路是使相同长度下序列增长要尽可能慢 package leetCode.动态规划; /** * @author km * @date 2021年06月11日 **/ public class LongestIncreasingSubsequence { public sta ...
分类:其他好文   时间:2021-06-13 09:19:49    阅读次数:0
leetcode-python-汉明距离
1)取异或,然后计算1的个数 class Solution: def hammingDistance(self, x: int, y: int) -> int: t = x^y count = 0 while t: count += 1 t = t& t-1 return count ...
分类:编程语言   时间:2021-06-11 19:07:12    阅读次数:0
34993条   上一页 1 ... 4 5 6 7 8 ... 3500 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!