
转换
文章平均质量分 51
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 168. Excel Sheet Column Title(EXCEL栏目)
原题网址:https://leetcode.com/problems/excel-sheet-column-title/ Given a positive integer, return its corresponding column title as appear in an Excel sheet. For example: 1 -> A 2 -> B原创 2016-05-25 01:39:31 · 520 阅读 · 0 评论 -
LeetCode 12. Integer to Roman(阿拉伯转罗马数字)
原题网址:https://leetcode.com/problems/integer-to-roman/ Given an integer, convert it to a roman numeral. Input is guaranteed to be within the range from 1 to 3999. 方法:理解罗马数字的规律。二分法。 public clas原创 2016-05-19 05:27:37 · 483 阅读 · 0 评论 -
LeetCode 13. Roman to Integer(罗马数字转阿拉伯数字)
原题网址:https://leetcode.com/problems/roman-to-integer/ Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. 方法:理解罗马数字。 public class Solut原创 2016-05-19 05:33:26 · 698 阅读 · 0 评论