Basic CalculatorImplement a basic calculator to evaluate a simple expression string.The expression string may contain open(and closing parentheses), t...
分类:
其他好文 时间:
2015-06-09 16:40:54
阅读次数:
115
message containing letters fromA-Zis being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an encoded message contain...
分类:
其他好文 时间:
2015-06-09 08:28:19
阅读次数:
116
You are given a non-negative integern, its decimal representation consists of at most100digits and doesn't contain leading zeroes.Your task is to dete...
分类:
其他好文 时间:
2015-06-08 18:53:55
阅读次数:
190
题目:Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).For example,S="ADOBECOD...
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linke...
分类:
其他好文 时间:
2015-06-08 15:05:57
阅读次数:
91
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:
其他好文 时间:
2015-06-08 12:57:49
阅读次数:
163
题目:
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return
it a...
分类:
其他好文 时间:
2015-06-06 15:01:01
阅读次数:
139
You are given a non-negative integern, its decimal representation consists of at most100digits and doesn't contain leading zeroes.Your task is to dete...
分类:
其他好文 时间:
2015-06-05 19:35:57
阅读次数:
133
java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for在unit里测试怎么也通不过,最后终于找到问题,原来是命名空间没写对,如果使用mapper,则空间中一定要写上Mapp...
分类:
移动开发 时间:
2015-06-04 18:55:42
阅读次数:
144
Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,
[1,1,2] have the following unique permutations:
[1,1,2], [1,2,1], and [2,1,1].这道题是打印一个整...
分类:
其他好文 时间:
2015-06-04 11:52:07
阅读次数:
159