2014年11月23日

摘要: Roman to IntegerGiven a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.SOLUTION 1:思路:从后往前遍历罗马数字,如果某... 阅读全文
posted @ 2014-11-23 20:05 Yu's Garden 阅读(621) 评论(0) 推荐(0) 编辑
摘要: Roman to IntegerGiven a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.SOLUTION 1:思路:从后往前遍历罗马数字,如果某... 阅读全文
posted @ 2014-11-23 18:43 Yu's Garden 阅读(421) 评论(0) 推荐(0) 编辑
摘要: Integer to Roman Given an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.SOLUTION 1:从大到小的贪心写法。从大到小匹配... 阅读全文
posted @ 2014-11-23 17:06 Yu's Garden 阅读(545) 评论(0) 推荐(0) 编辑
摘要: ZigZag ConversionThe string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern... 阅读全文
posted @ 2014-11-23 16:04 Yu's Garden 阅读(803) 评论(0) 推荐(0) 编辑
摘要: Multiply StringsGiven two numbers represented as strings, return multiplication of the numbers as a string.Note: The numbers can be arbitrarily large ... 阅读全文
posted @ 2014-11-23 10:33 Yu's Garden 阅读(619) 评论(0) 推荐(0) 编辑
摘要: Wildcard MatchingImplement wildcard pattern matching with support for '?' and '*'.'?' Matches any single character.'*' Matches any sequence of charact... 阅读全文
posted @ 2014-11-23 09:22 Yu's Garden 阅读(7729) 评论(0) 推荐(2) 编辑

导航