Given an unsorted array of integers, find the length of longest increasing subsequence. For example,Given [10, 9, 2, 5, 3, 7, 101, 18],The longest inc ...
分类:
其他好文 时间:
2017-06-27 15:02:24
阅读次数:
138
一、题目 1、描述 2、题意 求满足括号闭合规则的最大子串长度 二、解答 1、思路: 刚开始想到的是前面的判断这个字符串是否满足闭合规则的方法,即建一个Stack,当为'(' 时候,')' 入栈,当为 ')' 时候,判断栈顶是否为 ‘)’, 这种方法未解决 ()(() 这种情况。看到网上大神的方法, ...
分类:
其他好文 时间:
2017-06-26 18:04:47
阅读次数:
154
scratch 乱写 case 案例 server 服务器 input 输入 score 学分 course 课程 then 然后 expression 表达式 continue 继续 delay 延迟 print 打印 consecutive 连贯的 all 全部 full 满的 conpute ...
分类:
数据库 时间:
2017-06-25 12:45:16
阅读次数:
225
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo ...
分类:
其他好文 时间:
2017-06-25 10:00:59
阅读次数:
156
Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longes ...
分类:
其他好文 时间:
2017-06-23 23:47:23
阅读次数:
219
Question: Write a function to find the longest common prefix string amongst an array of strings. LeetCode submission: Executable code: Note: ...
分类:
其他好文 时间:
2017-06-22 01:23:22
阅读次数:
194
原题链接在这里:https://leetcode.com/problems/longest-uncommon-subsequence-ii/#/description 题目: Given a list of strings, you need to find the longest uncommon ...
分类:
其他好文 时间:
2017-06-20 10:56:39
阅读次数:
191
Total Accepted: 5540Total Submissions: 14066Difficulty: EasyContributors:love_FawnWe define a harmonious array is an array where the difference betwee... ...
分类:
其他好文 时间:
2017-06-19 00:38:08
阅读次数:
221
Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest l ...
分类:
其他好文 时间:
2017-06-18 23:33:51
阅读次数:
171
题目: Given a group of two strings, you need to find the longest uncommon subsequence of this group of two strings. The longest uncommon subsequence is ...
分类:
编程语言 时间:
2017-06-18 18:13:52
阅读次数:
163