
进制
文章平均质量分 53
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 171. Excel Sheet Column Number(Excel列号)
原题网址:https://leetcode.com/problems/excel-sheet-column-number/ Related to question Excel Sheet Column Title Given a column title as appear in an Excel sheet, return its corresponding column num原创 2016-05-25 01:36:49 · 489 阅读 · 0 评论 -
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 评论 -
405. Convert a Number to Hexadecimal
原题网址:https://leetcode.com/problems/convert-a-number-to-hexadecimal/ Given an integer, write an algorithm to convert it to hexadecimal. For negative integer, two’s complement method is used.原创 2016-10-28 03:50:48 · 659 阅读 · 0 评论