LeetCode
Soldier_GY
这个作者很懒,什么都没留下…
展开
-
1.two_sum题目
Leetcode上two sum题目的python练习原创 2018-04-10 23:14:26 · 203 阅读 · 0 评论 -
7. Reverse Integer
题目:Given a 32-bit signed integer, reverse digits of an integer. Example 1: Input: 123 Output: 321 Example 2: Input: -123 Output: -321 Example 3: Input: 120 Output: 21 Note: Assume we are de原创 2018-04-11 13:24:12 · 163 阅读 · 0 评论 -
9. Palindrome Number
题目Determine whether an integer is a palindrome. Do this without extra space。 判断输入的整数是否为回文数,即正读反读都一样的数。输出为布尔值。解法 1class Solution: def isPalindrome(self, x): """ :type x: int原创 2018-04-11 14:29:14 · 193 阅读 · 0 评论 -
13. Roman to integer
题目Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. 即将输入的罗马数字转换成十进制阿拉伯数字。 罗马数字的规律是: 左边数字如果小于右边数字的话,用右边数字减去左边数字;如果左边数字大于右边数字则执行加法。 如IV是5-1=4原创 2018-04-12 10:33:28 · 223 阅读 · 0 评论 -
14. Longest Common Prefix
题目Write a function to find the longest common prefix string amongst an array of strings. 即找出输入字符串数组中的最长公共前缀。如: 输入:[‘abc’,’abd’,’abe’] 输出:’ab’思路对数组中各字符串的每一位进行对比解法 1class Solution: def longestComm原创 2018-04-13 11:02:07 · 260 阅读 · 0 评论 -
20. Valid Parentheses
题目Given a string containing just the characters ‘(‘, ‘)’, ‘{‘, ‘}’, ‘[’ and ‘]’, determine if the input string is valid. An input string is valid if: Open brackets must be closed by the same type of原创 2018-04-13 14:46:46 · 226 阅读 · 0 评论