一、问题 最长回文子串: 给定一个字符串 s,找到 s 中最长的回文子串。你能够假定 s 的最大长度为 1000。 示例 1: 输入: “babad”输出: “bab”注重…
标签:LeetCode
leetcode笔记:Reverse String
一. 题目描述 Write a function that takes a string as input and returns the string reversed. Example: Given s = "hel…
LeetCode日常刷题(3)
7. Reverse Integer Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321…
Leetcode - Queue Reconstruction by Height
My code: public class Solution { public int[][] reconstructQueue(int[][] people) { if (people == null || peopl…
[leetcode]4. 寻找两个有序数组的中位数
题目描述: 难度:困难 给定两个大小为 m 和 n 的有序数组 nums1 和 nums2。 请你找出这两个有序数组的中位数,并且要求算法的时间复杂度为 O(log(m + n))。 你可以假设 nums1 和 nums…
8. 字符串转换整数 (atoi)
class Solution(object): def myAtoi(self, str): """ :type str: str :rtype: int """ str = str.strip() if len(str…
LeetCode算法题-Palindrome Linked List(Java实现)
这是悦乐书的第196次更新,第202篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第58题(顺位题号是234)。给出一个单链表,确定它是否是回文。例如: 输入:1-> 2 输出:fal…
前K个高频元素
给定一个非空的整数数组,返回其中出现频率前 k 高的元素。 输入: nums = [1,1,1,2,2,3], k = 2 输出: [1,2] 输入: nums = [1], k = 1 输出: [1] 说明: 你可以假…
LeetCode刷题之路 删列造序 II
删列造序 II【中等】 给定由 N 个小写字母字符串组成的数组 A,其中每个字符串长度相等。 选取一个删除索引序列,对于 A 中的每个字符串,删除对应每个索引处的字符。 比如,有 A = ["abcdef", "uvwx…
752. 打开转盘锁
你有一个带有四个圆形拨轮的转盘锁。每个拨轮都有10个数字: '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' 。每个拨轮可以自由旋转:例如把 '9' 变为 '0…
leetCode_718. Maximum Length of Repeated Subarray
Given two integer arrays A and B, return the maximum length of an subarray that appears in both arrays. 题目意思是给…
LeetCode解题报告--2Sum, 3Sum, 4Sum, K Sum求和问题总结
前言: 这几天在做LeetCode 里面有2sum, 3sum(closest), 4sum等问题, 这类问题是典型的递归思路解题,该这类问题的关键在于,在进行求和求解前,要先排序Arrays.sort()可实现,而本文…