描述 In LOL world, there is a hero called Teemo and his attacking can make his enemy Ashe be in poisoned conditi…
分类:LeetCode
524. Longest Word in Dictionary through Deleting
Medium 随便写了个自认为很暴力的方法,居然AC了而且速度排在中游吧,吃惊,真的是几百年没有不看答案写出来了,/(ㄒoㄒ)/~~ 我一向是推崇逻辑最简单的方法,越straightforward越好,越general越…
Leetcode - Range Addition
My code: public class Solution { public int[] getModifiedArray(int length, int[][] updates) { if (length <=…
[LeetCode] Flood Fill 洪水填充
An image is represented by a 2-D array of integers, each integer representing the pixel value…
LeetCode | Longest Palindromic Substring
题目: Given a string S , find the longest palindromic substring in S . You may assume that the maxim…
LeetCode 034 Search for a Range
题目描述 Given a sorted array of integers, find the starting and ending position of a given target value. Your alg…
[Leetcode] Binary Tree Longest Consecutive Sequence 二叉搜索树最长序列
Binary Tree Longest Consecutive Sequence Given a binary tree, find the length of the longest consecutive seque…
算法: 数组种的逆序对
题目: 在数组中的两个数字如果前面一个数字大于后面的数字,则这两 个数字组成一个逆序对。输入一个数组,求出这个数组中的逆序对的总数。 例如在数组{7,5,6,4} 中,一一共存在5 个逆序对,分别是(7,6)、(7,5)…
Leetcode PHP题解--D36 811. Subdomain Visit Count
811. Subdomain Visit Count 题目链接 811. Subdomain Visit Count 题目分析 题目给定一个字符串数组,每个字符串分两部分,以空格分割。 第一部分为访问次数,第二部分为域名…
每日算法之借助标准库解题(I)
解一些算法题时,我们可以借助语言标准库里的方法或数据结构,它能够有效的帮助我们。比如下面的两道LeetCode上的题目,这两道题很类似,都是求交集问题,但又有很大的不同。 Q1:给定两个数组,编写一个函数来计算它们的交集…
Leetcode上的一道算法题(Median of Two Sorted Arrays)
原题链接 描述: There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two …
[剑指offer] 把字符串转换成整数
本文首发于我的个人博客:尾尾部落 题目描述 将一个字符串转换成一个整数(实现Integer.valueOf(string)的功能,但是string不符合数字要求时返回0),要求不能使用字符串转换整数的库函数。 数值为0或…