这是悦乐书的第202次更新,第212篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第68题(顺位题号是290)。给定一个模式和一个字符串str,找到str是否完全匹配该模式。完全匹配是指在模…
分类:LeetCode
LeetCode算法题-Minimum Index Sum of Two Lists(Java实现)
这是悦乐书的第272次更新,第286篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第139题(顺位题号是599)。假设Andy和Doris想要选择一家餐馆吃晚餐,他们都有一个最受欢迎的餐馆列…
[LeetCode By Go 27]538. Convert BST to Greater Tree
二叉树的题目挺多的,写了个初始化二叉树的函数,以后用 func InitTree(index int, input []int) (t *TreeNode) { if index > len(input) { re…
leetcode关于数组的问题,leetcode414-第三大的数,LeetCode:152_Maximum Product Subarray | 最大乘积连续子数组 | Medium
关于数组的几道面试题 [Leetcode] 628. 三个数的最大乘积 解题思路: 这个一开始我是没想到思路的(除了遍历),因为有正负号的问题,后来看了一下别人的思路然后自己写的,思路是这样的: 三个数乘积最大只能有两种…
26. Remove Duplicates from Sorted Array
26. Remove Duplicates from Sorted Array 题目 Given a sorted array, remove the duplicates in-place such that each…
[LeetCode] Count Different Palindromic Subsequences 计数不同的回文子序列的个数
Given a string S, find the number of different non-empty palindromic subsequences in S, and return…
[Leetcode] Max Area of Island 最大岛屿面积
Max Area of Island 最新更新请见:https://yanjia.me/zh/2019/02/… Given a non-empty 2D array grid of 0’s an…
[Leetcode] Count and Say 数个数
Count Consecutive Digits in Integer Count consecutive digits and say it. For example, return 132341 if input i…
2018-07-15
521.最长特殊序列 题目描述 给定两个字符串,你需要从这两个字符串中找出最长的特殊序列。最长特殊序列定义如下:该序列为某字符串独有的最长子序列(即不能是其他字符串的子序列)。 子序列可以通过删去字符串中的某些字符实现,…
reorder-list
title: reorder-list date: 2018-12-04 10:40:55 categories: LeetCode tags: [List] 题目描述: Given a singly linked li…
[LeetCode] Roman to Integer 罗马数字转化成整数
Roman numerals are represented by seven different symbols: I, V, X, L, C, …
[LeetCode] Permutations II 全排列之二
Given a collection of numbers that might contain duplicates, return all possible unique permutations. E…