摘要:
1.题目描述 Given an integer, convert it to a roman numeral. 十进制数字转为罗马数字 2.题目分析 罗马数字计数方法 I V X L C D M 1 5 10 50 100 500 1000 相同的数字连写、所表示的数等于这些数字相加得到的数、如:Ⅲ 阅读全文
摘要:
1.题目描述 Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the tw 阅读全文
摘要:
1.题目描述 Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the 阅读全文
摘要:
1.题目描述 The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixe 阅读全文
摘要:
1.题目描述 Given a string, find the length of the longest substring without repeating characters. 返回给定字符串中的最长不重复字符串的长度 2.题目分析 起初看见这个题,直接双指针遍历了,结果老是wrong a 阅读全文
摘要:
1.题目描述 You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes 阅读全文
摘要:
1.题目描述 Given an integer n, return the number of trailing zeroes in n!. Note: Your solution should be in logarithmic time complexity. 给一个数n,在线性时间内得出末尾0 阅读全文
摘要:
1.题目描述 Related to question Excel Sheet Column Title Given a column title as appear in an Excel sheet, return its corresponding column number. For exam 阅读全文