码迷,mamicode.com
首页 > 其他好文 > 详细

8. 字符串转换整数 (atoi)

时间:2019-01-19 16:15:30      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:class   none   style   mat   pre   return   字符串   elf   group   

8. 字符串转换整数 (atoi)

 

方法一

import re
import math
class Solution(object):
    def myAtoi(self, str):
        """
        :type str: str
        :rtype: int
        """        
        r1 = re.match(r\s*[\-\+]?\d+,str)
        if r1!=None :
            r2=int(r1.group())
            if r2<=-2147483648:
                return -2147483648
            elif r2>=2147483648:
                return 2147483647
            else:
                return r2
        else:
            return 0

 

8. 字符串转换整数 (atoi)

标签:class   none   style   mat   pre   return   字符串   elf   group   

原文地址:https://www.cnblogs.com/xiao-xue-di/p/10291872.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!