这是悦乐书的第303次更新,第322篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第171题(顺位题号是720)。给出表示英语词典的字符串单词数组,找到单词中长度最长的单词,此单词可以通过数…
标签:LeetCode
213. 打家劫舍 II
题目分析 这个题目是打家劫舍问题的升级版, 题目的难度也从 easy 升级到了中等难度. class Solution(object): def dp(self,nums): # precondition len(num…
Leetcode 218. The Skyline Problem
原题描述很长,此处放链接:https://leetcode.com/problems/the-skyline-problem/description/ 思路: 题目要求所有建筑行程的轮廓,并且给出高度变化的点即可。 暴力…
LeetCode算法题-Valid Palindrome(Java实现)
这是悦乐书的第174次更新,第176篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第33题(顺位题号是125)。给定一个字符串,确定它是否是回文,只考虑字母数字字符并忽略大小写。空字符串是有…
139. 单词拆分
题目详情 给定一个非空字符串 s 和一个包含非空单词列表的字典 wordDict,判定 s 是否可以被空格拆分为一个或多个在字典中出现的单词。 说明: 拆分时可以重复使用字典中的单词。 你可以假设字典中没有重复的单词。 …
Leetcode 164. Maximum Gap
Given an unsorted array, find the maximum difference between the successive elements in its sorted form. Try t…
Day15. Reverse Words in a String III(557)
问题描述 Given a string, you need to reverse the order of characters in each word within a sentence while still pr…
LeetCode[4] - Binary Tree Level Order Traversal
普通的BFS. 唯一小心就是:每次要把每一Level 的放在一个list里面。也就是说,一旦queue里有东西,那一定就全部是这一个level的。先把size固定一下,把queue里面的东西全部加到这个level的lis…
383.Ransom Note
题目 Given an arbitrary ransom note string and another string containing letters from all the magazines, write a…
679. 24 Game
You have 4 cards each containing a number from 1 to 9. You need to judge whether they could operated through *…
Binary Tree Maximum Path Sum II
Given a binary tree, find the maximum path sum from root. The path may end at any node in the tree and contain…
Leetcode 171.Excel Sheet Column Number
Related to question Excel Sheet Column Title Given a column title as appear in an Excel sheet, return its corr…