摘要: Given two binary strings, return their sum (also a binary string).For example,a ="11"b ="1"Return"100".博主对于自己那冗长的代码真是累感不爱了~连注释都不用标了,特别清晰明了,捂脸逃走~只能安慰自己... 阅读全文
posted @ 2015-04-13 02:48 微微程序媛 阅读(143) 评论(0) 推荐(0) 编辑
摘要: The set[1,2,3,…,n]contains a total ofn! unique permutations.By listing and labeling all of the permutations in order,We get the following sequence (ie... 阅读全文
posted @ 2015-04-12 12:43 微微程序媛 阅读(183) 评论(0) 推荐(0) 编辑
摘要: Given a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.If the last word doe... 阅读全文
posted @ 2015-04-12 04:37 微微程序媛 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 1.Given a matrix ofmxnelements (mrows,ncolumns), return all elements of the matrix in spiral order.For example,Given the following matrix:[ [ 1, 2, 3 ... 阅读全文
posted @ 2015-04-11 15:58 微微程序媛 阅读(140) 评论(0) 推荐(0) 编辑
摘要: Find the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array[−2,1,−3,4,−1,2,1,... 阅读全文
posted @ 2015-04-11 11:43 微微程序媛 阅读(242) 评论(0) 推荐(0) 编辑
摘要: public class Solution { public static double Power(double x ,int n){ if(n==0){ return 1; } double v=Power(x,n/2); ... 阅读全文
posted @ 2015-04-11 07:11 微微程序媛 阅读(207) 评论(0) 推荐(0) 编辑
摘要: You are given annxn2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?solution:找规律 int[i]... 阅读全文
posted @ 2015-04-11 05:27 微微程序媛 阅读(106) 评论(0) 推荐(0) 编辑
摘要: Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximu... 阅读全文
posted @ 2015-04-10 07:45 微微程序媛 阅读(107) 评论(0) 推荐(0) 编辑
摘要: Given two numbers represented as strings, return multiplication of the numbers as a string.Note: The numbers can be arbitrarily large and are non-nega... 阅读全文
posted @ 2015-04-10 04:42 微微程序媛 阅读(99) 评论(0) 推荐(0) 编辑
摘要: Givennnon-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.Fo... 阅读全文
posted @ 2015-04-09 13:25 微微程序媛 阅读(107) 评论(0) 推荐(0) 编辑