从排序数组中删除重复项 给定一个有序数组,你需要原地删除其中的重复内容,使每个元素只出现一次,并返回新的长度。 不要另外定义一个数组,您必须通过用 O(1) 额外内存原地修改输入的数组来做到这一点。 示例: 给定数组: …
分类:LeetCode
34. 在排序数组中查找元素的第一个和最后一个位置(Swift版)
一、题目 给定一个按照升序排列的整数数组 nums,和一个目标值 target。找出给定目标值在数组中的开始位置和结束位置。 你的算法时间复杂度必须是 O(log n) 级别。 如果数组中不存在目标值,返回 [-1, -…
LeetCode算法题-Find the Difference(Java实现-五种解法)
这是悦乐书的第214次更新,第227篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第82题(顺位题号是389)。给定两个字符串s和t,它们只包含小写字母。字符串t由随机混洗字符串s生成,然后…
180713
Excel表列序号 题目描述 给定一个Excel表格中的列名称,返回其相应的列序号。 例如, A -> 1 B -> 2 C -> 3 ... Z -> 26 AA -> 27 AB -&g…
Leetcode - Partition Equal Subset Sum
My code: public class Solution { public boolean canPartition(int[] nums) { if (nums.length == 0) { return true…
Leetcode 72. Edit Distance
Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each op…
85. Maximal Rectangle
85. Maximal Rectangle 题目 Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containi…
[LeetCode] Find K Pairs with Smallest Sums 找和最小的K对数字
You are given two integer arrays nums1 and nums2 sorted in ascending order and an i…
[LeetCode] Find Permutation 找全排列
By now, you are given a secret signature consisting of character ‘D’ and ‘I…
LeetCode | Word Ladder
题目: Given two words (start and end), and a dictionary, find the length of shortest transformation se…
[Leetcode] Bus Routes 公交线路
Bus Routes 详细解题思路请访问:https://yanjia.me/zh/2018/11/… We have a list of bus routes. Each routes[i] is a bu…
[LeetCode][Python]458. Poor Pigs
There are 1000 buckets, one and only one of them contains poison, the rest are filled with water. They all loo…