给定一个字符串 String s = "leetcode" dict = ["leet", "code"]. 查看一下是够是字典中的词语组成。假设是返回true,否则返回false。 下边提供3种思路 1.动态算法 import java.util.HashSet; import java.util ...
分类:
编程语言 时间:
2017-06-09 12:32:04
阅读次数:
180
String to Integer (atoi) Total Accepted: 15482 Total Submissions: 106043My Submissions Implement atoi to convert a string to an integer. Hint: Careful ...
分类:
其他好文 时间:
2017-04-16 21:26:29
阅读次数:
181
一.问题 二.解决方法 1.这个题类似于在一个给定的数组中找出所有满足给定数值的整数对,先看一下这个问题 这个问题的简单的解题思路就是移动两个指针,便利数组,具体代码: 这样会输出重复的答案 2.过滤掉重复的结果 3.这道题和sum2问题的本质一样,我们可以设置两层循环,外层循环固定一个给定的tar ...
分类:
其他好文 时间:
2017-04-03 17:57:57
阅读次数:
170
58.LengthofLastWordGivenastringsconsistsofupper/lower-casealphabetsandemptyspacecharacters‘‘,returnthelengthoflastwordinthestring.Ifthelastworddoesnotexist,return0.Note:Awordisdefinedasacharactersequenceconsistsofnon-spacecharactersonly.Forexample,Givens="H..
分类:
其他好文 时间:
2016-10-03 00:38:01
阅读次数:
114
Youaregiventwolinkedlistsrepresentingtwonon-negativenumbers.Thedigitsarestoredinreverseorderandeachoftheirnodescontainasingledigit.Addthetwonumbersandreturnitasalinkedlist.Input:(2->4->3)+(5->6->4)Output:7->0->8根据给定的两个非负数组成的链..
分类:
其他好文 时间:
2016-08-26 15:51:17
阅读次数:
148
Reversedigitsofaninteger.Example1:x=123,return321Example2:x=-123,return-321整数反转:假如输入123,则输出321;解题:1)如果输入x为负数,那么先取负数的绝对值。并修改flag值为0.2)通过除十取余开始逐步取出个位数值,并将该数值依次加到反转数值中。3)对输入数字除十..
分类:
其他好文 时间:
2016-08-26 15:50:25
阅读次数:
157
4. 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 sorted arrays. The ...
分类:
其他好文 时间:
2016-08-14 14:16:51
阅读次数:
120
题目:
Write a function that takes a string as input and returns the string reversed.
Example:
Given s = “hello”, return “olleh”.翻译:
写一个函数,使用字符串作为输入,返回它反转后的结果。
例如,输入”hello”,返回”olleh”。分析:
转为字符数组后,将第一...
分类:
其他好文 时间:
2016-06-24 15:09:15
阅读次数:
121
题目:
A message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1
'B' -> 2
...
'Z' -> 26Given an encoded message containing digits, determine the total number...
分类:
其他好文 时间:
2016-06-24 14:58:41
阅读次数:
192